24cafd73a2
* Add structure for lists * Add list timeline streaming API * Add list APIs, bind list-account relation to follow relation * Add API for adding/removing accounts from lists * Add pagination to lists API * Add pagination to list accounts API * Adjust scopes for new APIs - Creating and modifying lists merely requires "write" scope - Fetching information about lists merely requires "read" scope * Add test for wrong user context on list timeline * Clean up tests
20 lines
391 B
Ruby
20 lines
391 B
Ruby
# frozen_string_literal: true
|
|
# == Schema Information
|
|
#
|
|
# Table name: conversations
|
|
#
|
|
# id :integer not null, primary key
|
|
# uri :string
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
#
|
|
|
|
class Conversation < ApplicationRecord
|
|
validates :uri, uniqueness: true, if: :uri?
|
|
|
|
has_many :statuses
|
|
|
|
def local?
|
|
uri.nil?
|
|
end
|
|
end
|