Delete death code Model/Dossier
This commit is contained in:
parent
907ac0f56c
commit
80c9165f08
1 changed files with 0 additions and 20 deletions
|
@ -95,14 +95,6 @@ class Dossier < ActiveRecord::Base
|
|||
commentaires.order(created_at: :desc)
|
||||
end
|
||||
|
||||
def sous_domaine
|
||||
if Rails.env.production?
|
||||
'tps'
|
||||
else
|
||||
'tps-dev'
|
||||
end
|
||||
end
|
||||
|
||||
def next_step! role, action
|
||||
unless %w(initiate follow update comment valid submit receive refuse without_continuation close).include?(action)
|
||||
fail 'action is not valid'
|
||||
|
@ -314,10 +306,6 @@ class Dossier < ActiveRecord::Base
|
|||
follows.size
|
||||
end
|
||||
|
||||
def total_commentaire
|
||||
self.commentaires.size
|
||||
end
|
||||
|
||||
def submit!
|
||||
self.deposit_datetime= DateTime.now
|
||||
|
||||
|
@ -336,12 +324,4 @@ class Dossier < ActiveRecord::Base
|
|||
def invite_by_user? email
|
||||
(invites_user.pluck :email).include? email
|
||||
end
|
||||
|
||||
def self.word_is_an_integer word
|
||||
return 0 if Float(word) > 2147483647
|
||||
|
||||
Float(word)
|
||||
rescue ArgumentError
|
||||
0
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue