2017-01-01 18:52:25 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class RemoteFollow
|
|
|
|
include ActiveModel::Validations
|
|
|
|
|
|
|
|
attr_accessor :acct
|
|
|
|
|
|
|
|
validates :acct, presence: true
|
|
|
|
|
|
|
|
def initialize(attrs = {})
|
2017-04-22 13:08:30 +00:00
|
|
|
@acct = attrs[:acct].strip unless attrs[:acct].nil?
|
2017-01-01 18:52:25 +00:00
|
|
|
end
|
|
|
|
end
|