0
0
Fork 0

Fix #52 - Add API versioning (v1)

This commit is contained in:
Eugen Rochko 2016-09-27 16:58:23 +02:00
parent 3f75f52285
commit 4f9b7432dd
53 changed files with 77 additions and 134 deletions

View file

@ -1,4 +1,4 @@
class Api::AccountsController < ApiController
class Api::V1::AccountsController < ApiController
before_action :doorkeeper_authorize!
before_action :set_account
respond_to :json

View file

@ -1,4 +1,4 @@
class Api::AppsController < ApplicationController
class Api::V1::AppsController < ApplicationController
respond_to :json
def create

View file

@ -1,4 +1,4 @@
class Api::FollowsController < ApiController
class Api::V1::FollowsController < ApiController
before_action :doorkeeper_authorize!
respond_to :json

View file

@ -1,4 +1,4 @@
class Api::MediaController < ApiController
class Api::V1::MediaController < ApiController
before_action :doorkeeper_authorize!
respond_to :json

View file

@ -1,4 +1,4 @@
class Api::StatusesController < ApiController
class Api::V1::StatusesController < ApiController
before_action :doorkeeper_authorize!
respond_to :json