* WIP Connect misc improvements/debugs * Modify tests and update snapshots * Change GitHub sidecar copy
10 lines
238 B
Ruby
10 lines
238 B
Ruby
module Api
|
|
module V0
|
|
class ChatChannelsController < ApplicationController
|
|
def show
|
|
@chat_channel = ChatChannel.find(params[:id])
|
|
raise unless @chat_channel.has_member?(current_user)
|
|
end
|
|
end
|
|
end
|
|
end
|