chinwagsocial/app/models/remote_follow.rb

14 lines
208 B
Ruby
Raw Normal View History

2017-01-02 05:52:25 +11:00
# frozen_string_literal: true
class RemoteFollow
include ActiveModel::Validations
attr_accessor :acct
validates :acct, presence: true
def initialize(attrs = {})
@acct = attrs[:acct]
end
end