mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
9 lines
131 B
Ruby
9 lines
131 B
Ruby
|
class AccountingPeriod < ActiveRecord::Base
|
||
|
before_destroy { false }
|
||
|
before_update { false }
|
||
|
|
||
|
def delete
|
||
|
false
|
||
|
end
|
||
|
end
|