mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-16 14:17:00 +08:00
13 lines
320 B
Ruby
13 lines
320 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
# Just an example, to be replaced with an actual implementation
|
||
|
module MyModuleStatusConsequences
|
||
|
class Completion < MyModuleStatusConsequence
|
||
|
def call(my_module)
|
||
|
my_module.state = 'completed'
|
||
|
my_module.completed_on = DateTime.now
|
||
|
my_module.save!
|
||
|
end
|
||
|
end
|
||
|
end
|