mirror of
https://github.com/CodeforLeipzig/stadtratmonitor.git
synced 2024-12-22 15:43:14 +01:00
29 lines
526 B
Ruby
29 lines
526 B
Ruby
# frozen_string_literal: true
|
|
|
|
module FactoryHelper
|
|
PAPER_TYPES = [
|
|
'Verwaltungsstandpunkt',
|
|
'Anfrage',
|
|
'Beschlussvorlage',
|
|
'Änderungsantrag',
|
|
'Antrag',
|
|
'Neufassung',
|
|
'Informationsvorlage',
|
|
'Einwohneranfrage',
|
|
'Petition',
|
|
'schriftliche Antwort zur Anfrage',
|
|
'Wichtige Angelegenheit',
|
|
'Eilentscheidung',
|
|
'Dringliche Anfrage'
|
|
].freeze
|
|
|
|
def self.paper_type
|
|
PAPER_TYPES.sample
|
|
end
|
|
|
|
REFERENCE = 'A-%05i/16'
|
|
|
|
def self.reference(seq)
|
|
REFERENCE % seq
|
|
end
|
|
end
|