Skip to content

Commit

Permalink
Autocorrection Added
Browse files Browse the repository at this point in the history
  • Loading branch information
wahibkapdi committed Oct 29, 2024
1 parent 8fe7320 commit 5715ccb
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,5 @@ Metrics/ClassLength:
Max: 250
AllCops:
NewCops: enable
Documentation:
Enabled: false
1 change: 1 addition & 0 deletions app/controllers/courses_controller.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# frozen_string_literal: true

# Courses Controller
class CoursesController < ApplicationController
helper_method :sort_column, :sort_direction
before_action :set_schedule, only: [:index]
Expand Down
1 change: 1 addition & 0 deletions app/controllers/room_bookings_controller.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# frozen_string_literal: true

# Room Bookings Controller
class RoomBookingsController < ApplicationController
def index
schedule_id = params[:schedule_id]
Expand Down
1 change: 1 addition & 0 deletions app/controllers/time_slots_controller.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# frozen_string_literal: true

# Time Slot Controller
class TimeSlotsController < ApplicationController
def filter
@schedule = Schedule.find(params[:schedule_id])
Expand Down
1 change: 1 addition & 0 deletions app/helpers/courses_helper.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# frozen_string_literal: true

# Courses Helper
module CoursesHelper
end
1 change: 1 addition & 0 deletions app/helpers/room_bookings_helper.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# frozen_string_literal: true

# Room Bookings Helper
module RoomBookingsHelper
end
1 change: 1 addition & 0 deletions app/helpers/time_slots_helper.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# frozen_string_literal: true

# Time Slot Helper
module TimeSlotsHelper
end

0 comments on commit 5715ccb

Please sign in to comment.