pull origin master

This commit is contained in:
Yan
2017-09-18 13:53:28 +06:30
parent 4f3b831771
commit 8966f290b5
122 changed files with 3964 additions and 2277 deletions

View File

@@ -7,8 +7,12 @@ module ApplicationCable
end
# Order Queue Station Channel
class OQSChannel < ActionCable::Channel::Base
class OrderQueueStationChannel < ActionCable::Channel::Base
end
# Order Queue Station Channel
class BillChannel < ActionCable::Channel::Base
end
end

View File

@@ -1,4 +1,7 @@
module ApplicationCable
class Connection < ActionCable::Connection::Base
def connect
logger.add_tags "ActionCable"
end
end
end