This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-01-01 10:52:25 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class RemoteFollow
|
|
|
|
include ActiveModel::Validations
|
|
|
|
|
|
|
|
attr_accessor :acct
|
|
|
|
|
|
|
|
validates :acct, presence: true
|
|
|
|
|
|
|
|
def initialize(attrs = {})
|
2017-04-22 06:08:30 -07:00
|
|
|
@acct = attrs[:acct].strip unless attrs[:acct].nil?
|
2017-01-01 10:52:25 -08:00
|
|
|
end
|
|
|
|
end
|