Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
7c3d3e80
Commit
7c3d3e80
authored
Feb 17, 2021
by
syasonik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Help rails find the right base service classes for oncall services
parent
41dfe9cb
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
ee/app/services/incident_management/oncall_rotations/create_service.rb
...es/incident_management/oncall_rotations/create_service.rb
+1
-1
ee/app/services/incident_management/oncall_rotations/destroy_service.rb
...s/incident_management/oncall_rotations/destroy_service.rb
+1
-1
ee/app/services/incident_management/oncall_schedules/create_service.rb
...es/incident_management/oncall_schedules/create_service.rb
+1
-1
ee/app/services/incident_management/oncall_schedules/destroy_service.rb
...s/incident_management/oncall_schedules/destroy_service.rb
+1
-1
ee/app/services/incident_management/oncall_schedules/update_service.rb
...es/incident_management/oncall_schedules/update_service.rb
+1
-1
No files found.
ee/app/services/incident_management/oncall_rotations/create_service.rb
View file @
7c3d3e80
...
...
@@ -2,7 +2,7 @@
module
IncidentManagement
module
OncallRotations
class
CreateService
<
BaseService
class
CreateService
<
OncallRotations
::
BaseService
MAXIMUM_PARTICIPANTS
=
100
# @param schedule [IncidentManagement::OncallSchedule]
...
...
ee/app/services/incident_management/oncall_rotations/destroy_service.rb
View file @
7c3d3e80
...
...
@@ -2,7 +2,7 @@
module
IncidentManagement
module
OncallRotations
class
DestroyService
<
BaseService
class
DestroyService
<
OncallRotations
::
BaseService
# @param oncall_schedule [IncidentManagement::OncallRotation]
# @param user [User]
def
initialize
(
oncall_rotation
,
user
)
...
...
ee/app/services/incident_management/oncall_schedules/create_service.rb
View file @
7c3d3e80
...
...
@@ -2,7 +2,7 @@
module
IncidentManagement
module
OncallSchedules
class
CreateService
<
BaseService
class
CreateService
<
OncallSchedules
::
BaseService
# @param project [Project]
# @param user [User]
# @param params [Hash]
...
...
ee/app/services/incident_management/oncall_schedules/destroy_service.rb
View file @
7c3d3e80
...
...
@@ -2,7 +2,7 @@
module
IncidentManagement
module
OncallSchedules
class
DestroyService
<
BaseService
class
DestroyService
<
OncallSchedules
::
BaseService
# @param oncall_schedule [IncidentManagement::OncallSchedule]
# @param user [User]
def
initialize
(
oncall_schedule
,
user
)
...
...
ee/app/services/incident_management/oncall_schedules/update_service.rb
View file @
7c3d3e80
...
...
@@ -2,7 +2,7 @@
module
IncidentManagement
module
OncallSchedules
class
UpdateService
<
BaseService
class
UpdateService
<
OncallSchedules
::
BaseService
# @param oncall_schedule [IncidentManagement::OncallSchedule]
# @param user [User]
# @param params [Hash]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment