mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-10 17:36:33 +08:00
15 lines
435 B
Ruby
15 lines
435 B
Ruby
# frozen_string_literal: true
|
|
|
|
class RepositoryColumnSerializer < ActiveModel::Serializer
|
|
include Rails.application.routes.url_helpers
|
|
|
|
attributes :message
|
|
|
|
def message
|
|
if instance_options[:creating]
|
|
I18n.t('libraries.repository_columns.create.success_flash', name: object.name)
|
|
elsif instance_options[:editing]
|
|
I18n.t('libraries.repository_columns.update.success_flash', name: object.name)
|
|
end
|
|
end
|
|
end
|