mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 03:07:52 +01:00
76 lines
2.1 KiB
Ruby
76 lines
2.1 KiB
Ruby
# Create an admin user and confirm its email automatically
|
|
admin = User.create(
|
|
full_name: 'Admin',
|
|
email: 'admin@example.com',
|
|
password: 'password',
|
|
role: 'admin',
|
|
confirmed_at: Time.zone.now
|
|
)
|
|
|
|
# Create some boards
|
|
feature_board = Board.create(
|
|
name: 'Feature Requests',
|
|
description: 'This is a **board**! You can create as many as you want from **site settings** and they can be *Markdown formatted*.',
|
|
order: 0
|
|
)
|
|
bug_board = Board.create(
|
|
name: 'Bug Reports',
|
|
description: 'Tell us everything about problems you encountered in our services!',
|
|
order: 1
|
|
)
|
|
|
|
# Create some post statuses
|
|
planned_post_status = PostStatus.create(
|
|
name: 'Planned',
|
|
color: '#0096ff',
|
|
order: 0,
|
|
show_in_roadmap: true
|
|
)
|
|
in_progress_post_status = PostStatus.create(
|
|
name: 'In Progress',
|
|
color: '#9437ff',
|
|
order: 1,
|
|
show_in_roadmap: true
|
|
)
|
|
completed_post_status = PostStatus.create(
|
|
name: 'Completed',
|
|
color: '#6ac47c',
|
|
order: 2,
|
|
show_in_roadmap: true
|
|
)
|
|
rejected_post_status = PostStatus.create(
|
|
name: 'Rejected',
|
|
color: '#ff2600',
|
|
order: 3,
|
|
show_in_roadmap: false
|
|
)
|
|
|
|
# Create some posts
|
|
post1 = Post.create(
|
|
title: 'This is how users give you feedback',
|
|
description: 'They can also provide an extendend description like this... bla bla...',
|
|
board_id: feature_board.id,
|
|
user_id: admin.id
|
|
)
|
|
post2 = Post.create(
|
|
title: 'You can assign a status to each post',
|
|
description: 'This one, for example, is marked as "Planned"',
|
|
board_id: feature_board.id,
|
|
user_id: admin.id,
|
|
post_status_id: planned_post_status.id
|
|
)
|
|
post3 = Post.create(
|
|
title: 'There are multiple boards',
|
|
description: 'For now you have Feature Requests and Bug Reports, but you can add or remove as many as you want!',
|
|
board_id: bug_board.id,
|
|
user_id: admin.id,
|
|
post_status_id: in_progress_post_status.id
|
|
)
|
|
|
|
# Create some comments
|
|
post1.comments.create(body: 'Users can comment to express their opinions!', user_id: admin.id)
|
|
|
|
# Let the user know how to log in with admin account
|
|
puts 'A default admin account has been created. Credentials:'
|
|
puts "-> email: #{admin.email}"
|
|
puts "-> password: #{admin.password}" |