12 lines
226 B
Ruby
12 lines
226 B
Ruby
class Admin::BudgetPhases::FormComponent < ApplicationComponent
|
|
include TranslatableFormHelper
|
|
include GlobalizeHelper
|
|
include Admin::Namespace
|
|
|
|
attr_reader :phase
|
|
|
|
def initialize(phase)
|
|
@phase = phase
|
|
end
|
|
end
|