Skip to content
Snippets Groups Projects
Unverified Commit 63dc7153 authored by Pierre-André Boissinot's avatar Pierre-André Boissinot Committed by GitHub
Browse files

Merge pull request #813 from noesya/i18n_curation

fix curation
parents eed90373 b314f119
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
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,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment