mastodon/app/models/remote_follow.rb

14 lines
239 B
Ruby
Raw Normal View History

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 = {})
@acct = attrs[:acct].strip unless attrs[:acct].nil?
2017-01-01 19:52:25 +01:00
end
end