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
ab23a865
Commit
ab23a865
authored
Dec 05, 2019
by
mo khan
Committed by
Ash McKenzie
Dec 12, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Collapse begin/rescue into method
parent
ca1e2f89
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
7 deletions
+4
-7
ee/app/services/software_license_policies/update_service.rb
ee/app/services/software_license_policies/update_service.rb
+4
-7
No files found.
ee/app/services/software_license_policies/update_service.rb
View file @
ab23a865
...
...
@@ -11,14 +11,11 @@ module SoftwareLicensePolicies
return
error
(
""
,
403
)
unless
can?
(
@current_user
,
:admin_software_license_policy
,
@project
)
return
success
(
software_license_policy:
software_license_policy
)
unless
params
[
:approval_status
].
present?
begin
software_license_policy
.
update
(
classification:
map_from
(
params
[
:approval_status
]))
RefreshLicenseComplianceChecksWorker
.
perform_async
(
project
.
id
)
rescue
ArgumentError
=>
ex
return
error
(
ex
.
message
,
400
)
end
software_license_policy
.
update
(
classification:
map_from
(
params
[
:approval_status
]))
RefreshLicenseComplianceChecksWorker
.
perform_async
(
project
.
id
)
success
(
software_license_policy:
software_license_policy
)
rescue
ArgumentError
=>
ex
error
(
ex
.
message
,
400
)
end
private
...
...
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