]> cat aescling's git repositories - mastodon.git/commit
Fix #52 - Add API versioning (v1)
authorEugen Rochko <eugen@zeonfederated.com>
Tue, 27 Sep 2016 14:58:23 +0000 (16:58 +0200)
committerEugen Rochko <eugen@zeonfederated.com>
Tue, 27 Sep 2016 14:59:08 +0000 (16:59 +0200)
commit4f9b7432dd4d323ac6cc4efceeae2efaffe62e7d
treeacae9e59bd6971885f7cb7b7ed45c4c9d1af4fca
parent3f75f522856954690d92358107e78bafd0db0baa
Fix #52 - Add API versioning (v1)
53 files changed:
app/assets/javascripts/components/actions/accounts.jsx
app/assets/javascripts/components/actions/compose.jsx
app/assets/javascripts/components/actions/follow.jsx
app/assets/javascripts/components/actions/interactions.jsx
app/assets/javascripts/components/actions/statuses.jsx
app/assets/javascripts/components/actions/timelines.jsx
app/controllers/api/v1/accounts_controller.rb [moved from app/controllers/api/accounts_controller.rb with 96% similarity]
app/controllers/api/v1/apps_controller.rb [moved from app/controllers/api/apps_controller.rb with 76% similarity]
app/controllers/api/v1/follows_controller.rb [moved from app/controllers/api/follows_controller.rb with 85% similarity]
app/controllers/api/v1/media_controller.rb [moved from app/controllers/api/media_controller.rb with 78% similarity]
app/controllers/api/v1/statuses_controller.rb [moved from app/controllers/api/statuses_controller.rb with 96% similarity]
app/helpers/api/accounts_helper.rb [deleted file]
app/helpers/api/apps_helper.rb [deleted file]
app/helpers/api/follows_helper.rb [deleted file]
app/helpers/api/media_helper.rb [deleted file]
app/helpers/api/salmon_helper.rb [deleted file]
app/helpers/api/statuses_helper.rb [deleted file]
app/helpers/api/subscriptions_helper.rb [deleted file]
app/helpers/home_helper.rb
app/lib/feed_manager.rb
app/views/api/accounts/followers.rabl [deleted file]
app/views/api/accounts/following.rabl [deleted file]
app/views/api/accounts/relationships.rabl [deleted file]
app/views/api/accounts/statuses.rabl [deleted file]
app/views/api/follows/show.rabl [deleted file]
app/views/api/statuses/home.rabl [deleted file]
app/views/api/statuses/mentions.rabl [deleted file]
app/views/api/v1/accounts/followers.rabl [new file with mode: 0644]
app/views/api/v1/accounts/following.rabl [new file with mode: 0644]
app/views/api/v1/accounts/relationship.rabl [moved from app/views/api/accounts/relationship.rabl with 100% similarity]
app/views/api/v1/accounts/relationships.rabl [new file with mode: 0644]
app/views/api/v1/accounts/show.rabl [moved from app/views/api/accounts/show.rabl with 100% similarity]
app/views/api/v1/accounts/statuses.rabl [new file with mode: 0644]
app/views/api/v1/apps/create.rabl [moved from app/views/api/apps/create.rabl with 100% similarity]
app/views/api/v1/follows/show.rabl [new file with mode: 0644]
app/views/api/v1/media/create.rabl [moved from app/views/api/media/create.rabl with 100% similarity]
app/views/api/v1/statuses/context.rabl [moved from app/views/api/statuses/context.rabl with 56% similarity]
app/views/api/v1/statuses/home.rabl [new file with mode: 0644]
app/views/api/v1/statuses/mentions.rabl [new file with mode: 0644]
app/views/api/v1/statuses/show.rabl [moved from app/views/api/statuses/show.rabl with 93% similarity]
config/routes.rb
spec/controllers/api/v1/accounts_controller_spec.rb [moved from spec/controllers/api/accounts_controller_spec.rb with 98% similarity]
spec/controllers/api/v1/apps_controller_spec.rb [moved from spec/controllers/api/apps_controller_spec.rb with 90% similarity]
spec/controllers/api/v1/follows_controller_spec.rb [moved from spec/controllers/api/follows_controller_spec.rb with 97% similarity]
spec/controllers/api/v1/media_controller_spec.rb [moved from spec/controllers/api/media_controller_spec.rb with 96% similarity]
spec/controllers/api/v1/statuses_controller_spec.rb [moved from spec/controllers/api/statuses_controller_spec.rb with 98% similarity]
spec/helpers/api/accounts_helper_spec.rb [deleted file]
spec/helpers/api/apps_helper_spec.rb [deleted file]
spec/helpers/api/follows_helper_spec.rb [deleted file]
spec/helpers/api/media_helper_spec.rb [deleted file]
spec/helpers/api/salmon_helper_spec.rb [deleted file]
spec/helpers/api/statuses_helper_spec.rb [deleted file]
spec/helpers/api/subscriptions_helper_spec.rb [deleted file]