You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
361 B
25 lines
361 B
class Status < ActiveRecord::Base |
|
belongs_to :account, inverse_of: :statuses |
|
|
|
validates :account, presence: true |
|
|
|
def verb |
|
:post |
|
end |
|
|
|
def object_type |
|
:note |
|
end |
|
|
|
def content |
|
self.text |
|
end |
|
|
|
def title |
|
content.truncate(80, omission: "...") |
|
end |
|
|
|
after_create do |
|
self.account.stream_entries.create!(activity: self) |
|
end |
|
end
|
|
|