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