10 lines
181 B
Ruby
10 lines
181 B
Ruby
|
|
class RecordingsController < ApplicationController
|
||
|
|
|
||
|
|
respond_to :html
|
||
|
|
|
||
|
|
def show
|
||
|
|
@claimed_recording = ClaimedRecording.find(params[:id])
|
||
|
|
render :layout => "web"
|
||
|
|
end
|
||
|
|
|
||
|
|
end
|