mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-15 03:13:20 +08:00
18 lines
370 B
Ruby
18 lines
370 B
Ruby
|
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
|