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