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