Module Task::Status
In: app/models/task.rb

Methods

names  

Included Modules

GetText

Constants

ACTIVE = 1   the status of tasks just created
CANCELLED = 2   the status of a task that was cancelled.
FINISHED = 3   the status os a task that was successfully finished

Public Class methods

[Source]

    # File app/models/task.rb, line 25
25:     def self.names
26:       [nil, N_('Active'), N_('Cancelled'), N_('Finished')]
27:     end

[Validate]