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

9 lines
167 B
Ruby
Raw Normal View History

2012-08-26 23:53:30 +00:00
module Api
class AlbumsController < ::ApplicationController
def picture
album = Album.find(params[:id])
redirect_to album.load_pic
end
end
end