27 lines
No EOL
755 B
Ruby
27 lines
No EOL
755 B
Ruby
# Create nessecary data to start with a fresh installation
|
|
|
|
# Create working group with full rights
|
|
administrators = Workgroup.create(
|
|
:name => "Administrators",
|
|
:description => "System administrators.",
|
|
:role_admin => true,
|
|
:role_finance => true,
|
|
:role_article_meta => true,
|
|
:role_suppliers => true,
|
|
:role_orders => true
|
|
)
|
|
|
|
# Create admin user
|
|
admin = User.create(
|
|
:nick => "admin",
|
|
:first_name => "Anton",
|
|
:last_name => "Administrator",
|
|
:email => "admin@foo.test",
|
|
:password => "secret"
|
|
)
|
|
|
|
# Admin joins the admin group
|
|
Membership.create(:group => administrators, :user => admin)
|
|
|
|
# First entry for article categories
|
|
ArticleCategory.create(:name => "Other", :description => "The other stuff fits here..") |