6 lines
103 B
Ruby
6 lines
103 B
Ruby
class API::TracksController < API::ApplicationController
|
|
def index
|
|
@tracks = Track.all
|
|
end
|
|
end
|