зеркало из
https://github.com/rs-pro/activeadmin-quill_editor.git
synced 2026-08-28 15:36:17 +03:00
10 строки
159 B
Ruby
10 строки
159 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Profile < ApplicationRecord
|
|
belongs_to :author, inverse_of: :profile, touch: true
|
|
|
|
def to_s
|
|
description
|
|
end
|
|
end
|