# frozen_string_literal: true class RepositoryColumnSerializer < ActiveModel::Serializer include Rails.application.routes.url_helpers attributes :id, :name, :message, :edit_url, :update_url, :destroy_html_url def message I18n.t('libraries.repository_columns.create.success_flash', name: object.name) end def edit_url edit_repository_repository_column_path(object.repository, object) end def update_url repository_repository_columns_text_column_path(object.repository, object) end def destroy_html_url repository_columns_destroy_html_path(object.repository, object) end end