11 lines
272 B
Ruby
11 lines
272 B
Ruby
|
# Copyright (C) 2012-2016 Zammad Foundation, http://zammad-foundation.org/
|
||
|
|
||
|
class ChatSessionsController < ApplicationController
|
||
|
prepend_before_action { authentication_check(permission: 'chat.agent') }
|
||
|
|
||
|
def show
|
||
|
model_show_render(Chat::Session, params)
|
||
|
end
|
||
|
|
||
|
end
|