Rubocop style update with some files

This commit is contained in:
2024-08-16 23:18:11 +02:00
parent 58758d3975
commit ca113ceb61
3 changed files with 11 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
class User < ApplicationRecord
has_many :jobs_as_costumer, foreign_key: :costumer_id, class_name: 'Job'
has_many :jobs_as_operator, foreign_key: :operator_id, class_name: 'Job'
has_many :jobs_as_costumer, foreign_key: :costumer_id, class_name: "Job"
has_many :jobs_as_operator, foreign_key: :operator_id, class_name: "Job"
end