10 lines
146 B
Ruby
10 lines
146 B
Ruby
|
class Photos < Application
|
||
|
|
||
|
# ...and remember, everything returned from an action
|
||
|
# goes to the client...
|
||
|
def index
|
||
|
render
|
||
|
end
|
||
|
|
||
|
end
|