1
0
Fork 0
beathaven/app/controllers/api/albums_controller.rb

9 lines
167 B
Ruby

module Api
class AlbumsController < ::ApplicationController
def picture
album = Album.find(params[:id])
redirect_to album.load_pic
end
end
end