mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-12 01:46:55 +08:00
17 lines
370 B
Ruby
17 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
|