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