80e02b90e4
Filters out hidden stream entries from Atom feed Blocks now generate hidden stream entries, can be used to federate blocks Private statuses cannot be reblogged (generates generic 422 error for now) POST /api/v1/statuses now takes visibility=(public|unlisted|private) param instead of unlisted boolean Statuses JSON now contains visibility=(public|unlisted|private) field
6 lines
164 B
Ruby
6 lines
164 B
Ruby
class AddHiddenToStreamEntries < ActiveRecord::Migration[5.0]
|
|
def change
|
|
add_column :stream_entries, :hidden, :boolean, null: false, default: false
|
|
end
|
|
end
|