Skip to content

Instantly share code, notes, and snippets.

@mariusz-blaszczak
Created August 28, 2018 10:16
Show Gist options
  • Save mariusz-blaszczak/9c77ca038b780f6d4d3cc029300f0adb to your computer and use it in GitHub Desktop.
Save mariusz-blaszczak/9c77ca038b780f6d4d3cc029300f0adb to your computer and use it in GitHub Desktop.
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