scinote-web/app/controllers/client_api/users/user_teams_controller.rb

18 lines
370 B
Ruby
Raw Normal View History

2017-08-25 14:54:32 +08:00
module ClientApi
module Users
class UserTeamsController < ApplicationController
def leave_team
byebug
respond_to do |format|
format.json do
render template: '/client_api/users/show',
status: :ok,
locals: { user: current_user }
end
end
end
end
end
end