Farmbot-Web-App/app/mutations/webcam_feeds/update.rb

15 lines
277 B
Ruby

module WebcamFeeds
class Update < Mutations::Command
required { model :webcam_feed, class: WebcamFeed }
optional do
string :name
string :url
end
def execute
webcam_feed.update!(inputs.except(:webcam_feed)) && webcam_feed
end
end
end