Updated job view for operator

This commit is contained in:
2024-08-27 12:28:46 +02:00
parent f4068c10bd
commit 7b7ba97032
6 changed files with 102 additions and 78 deletions

View File

@@ -34,4 +34,8 @@ class User < ApplicationRecord
after_update if: :password_digest_previously_changed? do
sessions.where.not(id: Current.session).delete_all
end
def name
[ firstname, " ", lastname ].join
end
end