]> cat aescling's git repositories - mastodon.git/commit
Refactor JSON templates to be generated with ActiveModelSerializers instead of Rabl...
authorEugen Rochko <eugen@zeonfederated.com>
Fri, 7 Jul 2017 02:02:06 +0000 (04:02 +0200)
committerGitHub <noreply@github.com>
Fri, 7 Jul 2017 02:02:06 +0000 (04:02 +0200)
commit8b2cad56374b2dbb6e7a445e7917810935c45536
treebebba9b1e98d599b3caa249a8d98fad0cfd70437
parent2d6128672fcadeb29c99551a33648b4880969d22
Refactor JSON templates to be generated with ActiveModelSerializers instead of Rabl (#4090)
80 files changed:
Gemfile
Gemfile.lock
app/controllers/api/v1/accounts/credentials_controller.rb
app/controllers/api/v1/accounts/follower_accounts_controller.rb
app/controllers/api/v1/accounts/following_accounts_controller.rb
app/controllers/api/v1/accounts/relationships_controller.rb
app/controllers/api/v1/accounts/search_controller.rb
app/controllers/api/v1/accounts/statuses_controller.rb
app/controllers/api/v1/accounts_controller.rb
app/controllers/api/v1/apps_controller.rb
app/controllers/api/v1/blocks_controller.rb
app/controllers/api/v1/favourites_controller.rb
app/controllers/api/v1/follow_requests_controller.rb
app/controllers/api/v1/follows_controller.rb
app/controllers/api/v1/instances_controller.rb
app/controllers/api/v1/media_controller.rb
app/controllers/api/v1/mutes_controller.rb
app/controllers/api/v1/notifications_controller.rb
app/controllers/api/v1/reports_controller.rb
app/controllers/api/v1/search_controller.rb
app/controllers/api/v1/statuses/favourited_by_accounts_controller.rb
app/controllers/api/v1/statuses/favourites_controller.rb
app/controllers/api/v1/statuses/mutes_controller.rb
app/controllers/api/v1/statuses/reblogged_by_accounts_controller.rb
app/controllers/api/v1/statuses/reblogs_controller.rb
app/controllers/api/v1/statuses_controller.rb
app/controllers/api/v1/timelines/home_controller.rb
app/controllers/api/v1/timelines/public_controller.rb
app/controllers/api/v1/timelines/tag_controller.rb
app/lib/inline_rabl_scope.rb [deleted file]
app/lib/inline_renderer.rb
app/models/context.rb [new file with mode: 0644]
app/models/search.rb [new file with mode: 0644]
app/presenters/account_relationships_presenter.rb [new file with mode: 0644]
app/presenters/status_relationships_presenter.rb [new file with mode: 0644]
app/serializers/rest/account_serializer.rb [new file with mode: 0644]
app/serializers/rest/application_serializer.rb [new file with mode: 0644]
app/serializers/rest/context_serializer.rb [new file with mode: 0644]
app/serializers/rest/instance_serializer.rb [new file with mode: 0644]
app/serializers/rest/media_attachment_serializer.rb [new file with mode: 0644]
app/serializers/rest/notification_serializer.rb [new file with mode: 0644]
app/serializers/rest/preview_card_serializer.rb [new file with mode: 0644]
app/serializers/rest/relationship_serializer.rb [new file with mode: 0644]
app/serializers/rest/report_serializer.rb [new file with mode: 0644]
app/serializers/rest/search_serializer.rb [new file with mode: 0644]
app/serializers/rest/status_serializer.rb [new file with mode: 0644]
app/services/fan_out_on_write_service.rb
app/services/notify_service.rb
app/views/api/v1/accounts/index.rabl [deleted file]
app/views/api/v1/accounts/relationship.rabl [deleted file]
app/views/api/v1/accounts/relationships/index.rabl [deleted file]
app/views/api/v1/accounts/show.rabl [deleted file]
app/views/api/v1/accounts/statuses/index.rabl [deleted file]
app/views/api/v1/apps/create.rabl [deleted file]
app/views/api/v1/apps/show.rabl [deleted file]
app/views/api/v1/blocks/index.rabl [deleted file]
app/views/api/v1/favourites/index.rabl [deleted file]
app/views/api/v1/follow_requests/index.rabl [deleted file]
app/views/api/v1/follows/show.rabl [deleted file]
app/views/api/v1/instances/show.rabl [deleted file]
app/views/api/v1/media/create.rabl [deleted file]
app/views/api/v1/mutes/index.rabl [deleted file]
app/views/api/v1/notifications/index.rabl [deleted file]
app/views/api/v1/notifications/show.rabl [deleted file]
app/views/api/v1/reports/index.rabl [deleted file]
app/views/api/v1/reports/show.rabl [deleted file]
app/views/api/v1/search/index.rabl [deleted file]
app/views/api/v1/statuses/_media.rabl [deleted file]
app/views/api/v1/statuses/_mention.rabl [deleted file]
app/views/api/v1/statuses/_show.rabl [deleted file]
app/views/api/v1/statuses/_tags.rabl [deleted file]
app/views/api/v1/statuses/accounts.rabl [deleted file]
app/views/api/v1/statuses/card.rabl [deleted file]
app/views/api/v1/statuses/context.rabl [deleted file]
app/views/api/v1/statuses/index.rabl [deleted file]
app/views/api/v1/statuses/show.rabl [deleted file]
app/views/api/v1/timelines/show.rabl [deleted file]
app/views/home/initial_state.json.rabl
app/workers/push_update_worker.rb
spec/lib/inline_rabl_scope_spec.rb [deleted file]