Fix coding standards in application

This commit is contained in:
Thibault Jouan
2014-04-01 19:02:23 +00:00
parent aca19eb51f
commit e6f6475705
5 changed files with 54 additions and 44 deletions

View File

@@ -1,5 +1,7 @@
class API::TracksController < API::ApplicationController
def index
@tracks = Track.all
module API
class TracksController < ApplicationController
def index
@tracks = Track.all
end
end
end