7 lines
92 B
Ruby
7 lines
92 B
Ruby
module ApplicationHelper
|
|
|
|
def score
|
|
current_user.habits.sum('score').to_i
|
|
end
|
|
end
|