mirror of
https://github.com/danbee/danbarberphoto
synced 2025-03-04 08:49:07 +00:00
12 lines
214 B
Ruby
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
|