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
f09d4617
Commit
f09d4617
authored
Apr 20, 2020
by
Mehmet Emin INAC
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change Vulnerabilities::ExportPolicy to refer to expoortable
parent
c8356813
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
ee/app/policies/vulnerabilities/export_policy.rb
ee/app/policies/vulnerabilities/export_policy.rb
+2
-2
No files found.
ee/app/policies/vulnerabilities/export_policy.rb
View file @
f09d4617
...
...
@@ -2,10 +2,10 @@
module
Vulnerabilities
class
ExportPolicy
<
BasePolicy
delegate
{
@subject
.
project
}
delegate
{
@subject
.
exportable
}
condition
(
:is_author
)
{
@user
&&
@subject
.
author
==
@user
}
condition
(
:exportable
)
{
can?
(
:create_vulnerability_export
,
@subject
.
project
)
}
condition
(
:exportable
)
{
can?
(
:create_vulnerability_export
,
@subject
.
exportable
)
}
rule
{
exportable
&
is_author
}.
policy
do
enable
:read_vulnerability_export
...
...
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