1
0
mirror of https://github.com/danbee/danbarberphoto synced 2025-03-04 08:49:07 +00:00
danbarberphoto/app/controllers/views_controller.rb
2016-03-13 18:39:09 +00:00

12 lines
214 B
Ruby

class ViewsController < ApplicationController
def create
photo = Photo.find_by_id(params[:photo_id])
if photo.present?
photo.log_view
head :ok
else
head :not_found
end
end
end