Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
Admin
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
osuny
Admin
Commits
63dc7153
Unverified
Commit
63dc7153
authored
2 years ago
by
Pierre-André Boissinot
Committed by
GitHub
2 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #813 from noesya/i18n_curation
fix curation
parents
eed90373
b314f119
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
app/controllers/admin/communication/websites/posts/curations_controller.rb
+1
-1
1 addition, 1 deletion
...dmin/communication/websites/posts/curations_controller.rb
app/services/curator.rb
+5
-3
5 additions, 3 deletions
app/services/curator.rb
with
6 additions
and
4 deletions
app/controllers/admin/communication/websites/posts/curations_controller.rb
+
1
−
1
View file @
63dc7153
...
...
@@ -4,7 +4,7 @@ class Admin::Communication::Websites::Posts::CurationsController < Admin::Commun
end
def
create
@curator
=
Curator
.
new
@website
,
current_user
,
curation_params
[
:url
]
@curator
=
Curator
.
new
@website
,
current_user
,
current_website_language
,
curation_params
[
:url
]
if
@curator
.
valid?
redirect_to
[
:admin
,
@curator
.
post
],
notice:
t
(
'admin.successfully_created_html'
,
model:
@curator
.
post
.
to_s
)
...
...
This diff is collapsed.
Click to expand it.
app/services/curator.rb
+
5
−
3
View file @
63dc7153
class
Curator
attr_reader
:website
,
:user
,
:url
,
:post
attr_reader
:website
,
:user
,
:language
,
:url
,
:post
def
initialize
(
website
,
user
,
url
)
def
initialize
(
website
,
user
,
language
,
url
)
@website
=
website
@user
=
user
@language
=
language
@url
=
url
create_post!
attach_image!
unless
page
.
image
.
blank?
...
...
@@ -22,7 +23,8 @@ class Curator
title:
page
.
title
,
slug:
page
.
title
.
parameterize
,
author:
@user
.
person
,
published_at:
Time
.
now
published_at:
Time
.
now
,
language_id:
@language
.
id
)
@chapter
=
@post
.
blocks
.
create
(
university:
website
.
university
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment