Skip to content

Commit 48dd8b4

Browse files
committed
style : Apply rubocop lint
1 parent 0e77c31 commit 48dd8b4

File tree

4 files changed

+2
-4
lines changed

4 files changed

+2
-4
lines changed

app/controllers/code/failure.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,3 @@ module Failure
2323
NOT_FOUND_USER = FailureData.new(status_code: 404, message: "해당 유저를 찾을 수 없습니다.")
2424
NOT_FOUND_SCHEDULE = FailureData.new(status_code: 404, message: "해당 예약 일정을 찾을 수 없습니다.")
2525
end
26-

app/controllers/code/success.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,3 @@ module Success
1414
DELETE_RESERVATION = SuccessData.new(status_code: 204, message: "예약 삭제를 성공했습니다.")
1515
CONFIRM_RESERVATION = SuccessData.new(status_code: 204, message: "예약 확정을 성공했습니다.")
1616
end
17-

config/application.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class Application < Rails::Application
1515
# not contain `.rb` files, or that should not be reloaded or eager loaded.
1616
# Common ones are `templates`, `generators`, or `middleware`, for example.
1717
config.autoload_lib(ignore: %w[assets tasks])
18-
config.autoload_paths += %W(#{config.root}/app/controllers/code)
18+
config.autoload_paths += %W[#{config.root}/app/controllers/code]
1919

2020
# Configuration for the application, engines, and railties goes here.
2121
#

db/seeds.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
{ id: 6, user_id: 3, personnel: 10000, start_datetime: "2025-02-24 08:00:00", end_datetime: "2025-02-24 16:00:00", is_confirm: false, name: "User 3 - Schedule 3" },
3030
{ id: 7, user_id: 4, personnel: 10000, start_datetime: "2025-02-22 10:00:00", end_datetime: "2025-02-23 10:00:00", is_confirm: true, name: "User 4 - Schedule 1" },
3131
{ id: 8, user_id: 4, personnel: 10000, start_datetime: "2025-02-23 10:00:00", end_datetime: "2025-02-24 10:00:00", is_confirm: false, name: "User 4 - Schedule 2" },
32-
{ id: 9, user_id: 4, personnel: 10000, start_datetime: "2025-02-24 10:00:00", end_datetime: "2025-02-25 10:00:00", is_confirm: true, name: "User 4 - Schedule 3" },
32+
{ id: 9, user_id: 4, personnel: 10000, start_datetime: "2025-02-24 10:00:00", end_datetime: "2025-02-25 10:00:00", is_confirm: true, name: "User 4 - Schedule 3" }
3333
])
3434
puts "> Schedule dummy data insert succeeded"
3535
puts ""

0 commit comments

Comments
 (0)