extract controller base class

This commit is contained in:
Jens Kraemer
2021-10-05 04:33:47 +08:00
parent 317aa08365
commit d32845cc6e
2 changed files with 13 additions and 3 deletions

View File

@@ -0,0 +1,12 @@
# base class for stopwatch controllers
class StopwatchController < ApplicationController
helper :timelog, :custom_fields
before_action :require_login
private
def authorize_edit_time
@time_entry.editable_by?(User.current) or deny_access
end
end