Project initialize

This commit is contained in:
Zin Bo Thit
2026-01-28 09:53:14 +06:30
commit e8380c6e23
139 changed files with 4599 additions and 0 deletions

22
test/fixtures/users.yml vendored Normal file
View File

@@ -0,0 +1,22 @@
admin:
name: Admin User
email: admin@example.com
role: admin
encrypted_password: <%= Devise::Encryptor.digest(User, 'password123') %>
confirmed_at: <%= Time.current %>
manager:
name: Manager User
email: manager@example.com
role: manager
department: one
encrypted_password: <%= Devise::Encryptor.digest(User, 'password123') %>
confirmed_at: <%= Time.current %>
employee:
name: Employee User
email: employee@example.com
role: employee
department: one
encrypted_password: <%= Devise::Encryptor.digest(User, 'password123') %>
confirmed_at: <%= Time.current %>