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
9234ef4e
Commit
9234ef4e
authored
Jul 10, 2019
by
Eugenia Grieff
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add admin_note permission in epics for group owner
parent
e429aa0b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
ee/app/policies/epic_policy.rb
ee/app/policies/epic_policy.rb
+2
-1
No files found.
ee/app/policies/epic_policy.rb
View file @
9234ef4e
...
...
@@ -4,6 +4,7 @@ class EpicPolicy < BasePolicy
delegate
{
@subject
.
group
}
condition
(
:maintainer
)
{
@subject
.
group
.
has_maintainer?
(
@user
)
}
condition
(
:owner
)
{
@subject
.
group
.
has_owner?
(
@user
)
}
rule
{
can?
(
:read_epic
)
}.
policy
do
enable
:read_epic_iid
...
...
@@ -16,5 +17,5 @@ class EpicPolicy < BasePolicy
rule
{
can?
(
:create_note
)
}.
enable
:award_emoji
rule
{
maintainer
}.
enable
:admin_note
rule
{
maintainer
|
owner
}.
enable
:admin_note
end
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