Created
August 28, 2018 10:16
-
-
Save mariusz-blaszczak/9c77ca038b780f6d4d3cc029300f0adb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class DoorsStateController < ApplicationController | |
def toggle | |
event = Doors.toggle | |
render json: { | |
status: 'success', | |
body: event | |
} | |
end | |
def read | |
render json: { | |
status: 'success', | |
body: Doors.last_event | |
} | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment