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