14 lines
348 B
Ruby
14 lines
348 B
Ruby
class Form::AccountSubscribe
|
|
include ActiveModel::Model
|
|
include ActiveModel::Attributes
|
|
|
|
attribute :id, :integer
|
|
attribute :acct, :string
|
|
attribute :show_reblogs, :boolean, default: true
|
|
attribute :list_id, :integer
|
|
attribute :media_only, :boolean, default: false
|
|
|
|
def acct=(val)
|
|
super(val.to_s.strip.gsub(/\A@/, ''))
|
|
end
|
|
end
|