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