Add REST API for managing and posting to circles
Circles are the conceptual opposite of lists. A list is a subdivision of your follows, a circle is a subdivision of your followers. Posting to a circle means making content available to only some of your followers. Circles have been internally supported in Mastodon for the purposes of federation since #8950, this adds the REST API necessary for making use of them in Mastodon itsef.
Showing
+353 -4
app/controllers/api/v1/circles_controller.rb
0 → 100644
app/models/circle.rb
0 → 100644
app/models/circle_account.rb
0 → 100644
db/migrate/20200718225713_create_circles.rb
0 → 100644
spec/fabricators/circle_fabricator.rb
0 → 100644
spec/models/circle_account_spec.rb
0 → 100644
spec/models/circle_spec.rb
0 → 100644
Please register or sign in to comment