aboutsummaryrefslogtreecommitdiffstats
path: root/lib/action_cable/connection/subscriptions.rb
Commit message (Collapse)AuthorAgeFilesLines
* Allow rejecting subscriptions from the channelPratik Naik2015-10-211-2/+6
|
* Devolve blanket #require to reveal intent and responsibilityJeremy Daer2015-10-161-0/+2
| | | | | | | | * Move specific requires close to where they're needed. * Use the private active_support/rails dep to wrap up common needs like eager autoload and module delegation. * Use a single Rails engine rather than an engine and a railtie. * Prefer `AS::JSON.encode` to `Object#to_json`.
* refactor channel look up to use a hash instead of an array and reduce the ↵Lachlan Sylvester2015-07-301-3/+1
| | | | number of calls to safe_constantize because it can be slow
* Revert to perform_action language – we're already using process for the ↵David Heinemeier Hansson2015-07-081-3/+3
| | | | connection
* DocumentationDavid Heinemeier Hansson2015-07-071-0/+2
|
* More clear method name for what's actually happeningDavid Heinemeier Hansson2015-07-071-1/+1
|
* Go with process_action to match language from Action ControllerDavid Heinemeier Hansson2015-07-071-3/+3
|
* Switch domain language from channel connect/disconnect to subscribe/unsubscribeDavid Heinemeier Hansson2015-07-071-2/+2
|
* Extract Server configuration into a Configuration objectDavid Heinemeier Hansson2015-07-051-2/+2
|
* Guard against duplicate subscriptionsJavan Makhmali2015-07-021-1/+1
|
* Fix referenceDavid Heinemeier Hansson2015-06-291-1/+1
|
* Merge pull request #2 from basecamp/create-channelJavan Makhmali2015-06-261-2/+2
|\ | | | | Channel factory
| * Create JavaScript channels identified by their Ruby class nameJavan Makhmali2015-06-241-2/+2
| |
* | Don't need a log_exception helper, just do it inlineDavid Heinemeier Hansson2015-06-261-2/+1
|/
* Feature envy detected, so move execute_command to SubscriptionsDavid Heinemeier Hansson2015-06-221-6/+25
|
* Use delegated loggerDavid Heinemeier Hansson2015-06-221-2/+3
|
* StyleDavid Heinemeier Hansson2015-06-221-3/+1
|
* Extract execute_command method and centralize exception handlingDavid Heinemeier Hansson2015-06-221-2/+0
|
* Extracted Subscriptions classDavid Heinemeier Hansson2015-06-211-0/+54