Browse Source

updated structure for CI4-alpha.4 (renamed `application`-dir to `app`)

v3-dev
REJack 6 years ago
parent
commit
a85c453b61
No known key found for this signature in database
GPG Key ID: 4A44B48700429F46
  1. 22
      .gitignore
  2. 2
      .gitlab-ci.yml
  3. 0
      app/Config/Aauth.php
  4. 0
      app/Controllers/Account/Edit.php
  5. 0
      app/Controllers/Account/Home.php
  6. 0
      app/Controllers/Account/Login.php
  7. 0
      app/Controllers/Account/Logout.php
  8. 0
      app/Controllers/Account/Register.php
  9. 0
      app/Controllers/Account/Remind_password.php
  10. 0
      app/Controllers/Account/Reset_password.php
  11. 0
      app/Controllers/Account/Verification.php
  12. 0
      app/Controllers/Admin/Home.php
  13. 0
      app/Controllers/Admin/Migrate.php
  14. 0
      app/Controllers/Admin/Users.php
  15. 0
      app/Controllers/Home.php
  16. 0
      app/Database/Migrations/20181026042034_create_ci_sessions_table.php
  17. 0
      app/Database/Migrations/20181026110732_create_users_table.php
  18. 0
      app/Database/Migrations/20181031062503_create_user_variables.php
  19. 0
      app/Database/Migrations/20181031063113_create_login_attempts.php
  20. 0
      app/Database/Migrations/20181031063642_create_login_tokens.php
  21. 0
      app/Database/Migrations/20181031064211_create_groups.php
  22. 0
      app/Database/Migrations/20181031064431_create_group_to_user.php
  23. 0
      app/Database/Migrations/20181031064550_create_group_to_group.php
  24. 0
      app/Database/Migrations/20181031064714_create_perms.php
  25. 0
      app/Database/Migrations/20181031065111_create_perm_to_user.php
  26. 0
      app/Database/Migrations/20181031065240_create_perm_to_group.php
  27. 0
      app/Database/Migrations/20181031072542_create_default_groups.php
  28. 0
      app/Database/Migrations/20181031072914_create_default_users.php
  29. 0
      app/Helpers/aauth_helper.php
  30. 0
      app/Language/de/Aauth.php
  31. 0
      app/Language/en/Aauth.php
  32. 0
      app/Language/en/Account.php
  33. 0
      app/Language/en/Admin.php
  34. 0
      app/Language/es/Aauth.php
  35. 0
      app/Language/fa/Aauth.php
  36. 0
      app/Language/fr/Aauth.php
  37. 0
      app/Language/id/Aauth.php
  38. 0
      app/Language/ru/Aauth.php
  39. 0
      app/Language/sv/Aauth.php
  40. 0
      app/Language/zh-CN/Aauth.php
  41. 0
      app/Language/zh-TW/Aauth.php
  42. 0
      app/Libraries/Aauth.php
  43. 0
      app/Models/Aauth/GroupModel.php
  44. 0
      app/Models/Aauth/GroupToGroupModel.php
  45. 0
      app/Models/Aauth/GroupToUserModel.php
  46. 0
      app/Models/Aauth/LoginAttemptModel.php
  47. 0
      app/Models/Aauth/LoginTokenModel.php
  48. 0
      app/Models/Aauth/PermModel.php
  49. 0
      app/Models/Aauth/PermToGroupModel.php
  50. 0
      app/Models/Aauth/PermToUserModel.php
  51. 0
      app/Models/Aauth/UserModel.php
  52. 0
      app/Models/Aauth/UserVariableModel.php
  53. 0
      app/Views/Aauth/RemindPassword.php
  54. 0
      app/Views/Aauth/ResetPassword.php
  55. 0
      app/Views/Aauth/Verification.php
  56. 0
      app/Views/Account/Edit.php
  57. 0
      app/Views/Account/Home.php
  58. 0
      app/Views/Account/Login.php
  59. 0
      app/Views/Account/Register.php
  60. 0
      app/Views/Account/RemindPassword.php
  61. 0
      app/Views/Account/ResetPassword.php
  62. 0
      app/Views/Account/Verification.php
  63. 0
      app/Views/Admin/Home.php
  64. 0
      app/Views/Admin/Migrate.php
  65. 0
      app/Views/Admin/Users/Home.php
  66. 0
      app/Views/Admin/Users/New.php
  67. 0
      app/Views/Home.php
  68. 0
      app/Views/Pagers/bootstrap_full.php
  69. 0
      app/Views/Templates/Footer.php
  70. 0
      app/Views/Templates/FooterAdmin.php
  71. 0
      app/Views/Templates/FooterBlank.php
  72. 0
      app/Views/Templates/Header.php
  73. 0
      app/Views/Templates/HeaderAdmin.php
  74. 0
      app/Views/Templates/HeaderBlank.php

22
.gitignore vendored

@ -14,20 +14,20 @@ tests/README.md
vendor/
writable/
application/index.html
application/.htaccess
app/index.html
app/.htaccess
application/Config/
!application/Config/Aauth.php
app/Config/*
!app/Config/Aauth.php
application/Filters/Throttle.php
application/Filters/Honeypot.php
application/Filters/CSRF.php
application/Filters/DebugToolbar.php
app/Filters/Throttle.php
app/Filters/Honeypot.php
app/Filters/CSRF.php
app/Filters/DebugToolbar.php
application/Views/errors/
application/Views/welcome_message.php
application/Views/form.php
app/Views/errors/
app/Views/welcome_message.php
app/Views/form.php
composer.lock
spark

2
.gitlab-ci.yml

@ -22,7 +22,7 @@ variables:
# Configure mysql environment variables (https://hub.docker.com/r/_/mysql/)
MYSQL_DATABASE: aauth_v3_ci4_testing
MYSQL_ROOT_PASSWORD: root
CODEIGNITER_VERSION: '4.0.0-alpha.3'
CODEIGNITER_VERSION: '4.0.0-alpha.4'
# Run our tests
# If Xdebug was installed you can generate a coverage report and see code coverage metrics.

0
application/Config/Aauth.php → app/Config/Aauth.php

0
application/Controllers/Account/Edit.php → app/Controllers/Account/Edit.php

0
application/Controllers/Account/Home.php → app/Controllers/Account/Home.php

0
application/Controllers/Account/Login.php → app/Controllers/Account/Login.php

0
application/Controllers/Account/Logout.php → app/Controllers/Account/Logout.php

0
application/Controllers/Account/Register.php → app/Controllers/Account/Register.php

0
application/Controllers/Account/Remind_password.php → app/Controllers/Account/Remind_password.php

0
application/Controllers/Account/Reset_password.php → app/Controllers/Account/Reset_password.php

0
application/Controllers/Account/Verification.php → app/Controllers/Account/Verification.php

0
application/Controllers/Admin/Home.php → app/Controllers/Admin/Home.php

0
application/Controllers/Admin/Migrate.php → app/Controllers/Admin/Migrate.php

0
application/Controllers/Admin/Users.php → app/Controllers/Admin/Users.php

0
application/Controllers/Home.php → app/Controllers/Home.php

0
application/Database/Migrations/20181026042034_create_ci_sessions_table.php → app/Database/Migrations/20181026042034_create_ci_sessions_table.php

0
application/Database/Migrations/20181026110732_create_users_table.php → app/Database/Migrations/20181026110732_create_users_table.php

0
application/Database/Migrations/20181031062503_create_user_variables.php → app/Database/Migrations/20181031062503_create_user_variables.php

0
application/Database/Migrations/20181031063113_create_login_attempts.php → app/Database/Migrations/20181031063113_create_login_attempts.php

0
application/Database/Migrations/20181031063642_create_login_tokens.php → app/Database/Migrations/20181031063642_create_login_tokens.php

0
application/Database/Migrations/20181031064211_create_groups.php → app/Database/Migrations/20181031064211_create_groups.php

0
application/Database/Migrations/20181031064431_create_group_to_user.php → app/Database/Migrations/20181031064431_create_group_to_user.php

0
application/Database/Migrations/20181031064550_create_group_to_group.php → app/Database/Migrations/20181031064550_create_group_to_group.php

0
application/Database/Migrations/20181031064714_create_perms.php → app/Database/Migrations/20181031064714_create_perms.php

0
application/Database/Migrations/20181031065111_create_perm_to_user.php → app/Database/Migrations/20181031065111_create_perm_to_user.php

0
application/Database/Migrations/20181031065240_create_perm_to_group.php → app/Database/Migrations/20181031065240_create_perm_to_group.php

0
application/Database/Migrations/20181031072542_create_default_groups.php → app/Database/Migrations/20181031072542_create_default_groups.php

0
application/Database/Migrations/20181031072914_create_default_users.php → app/Database/Migrations/20181031072914_create_default_users.php

0
application/Helpers/aauth_helper.php → app/Helpers/aauth_helper.php

0
application/Language/de/Aauth.php → app/Language/de/Aauth.php

0
application/Language/en/Aauth.php → app/Language/en/Aauth.php

0
application/Language/en/Account.php → app/Language/en/Account.php

0
application/Language/en/Admin.php → app/Language/en/Admin.php

0
application/Language/es/Aauth.php → app/Language/es/Aauth.php

0
application/Language/fa/Aauth.php → app/Language/fa/Aauth.php

0
application/Language/fr/Aauth.php → app/Language/fr/Aauth.php

0
application/Language/id/Aauth.php → app/Language/id/Aauth.php

0
application/Language/ru/Aauth.php → app/Language/ru/Aauth.php

0
application/Language/sv/Aauth.php → app/Language/sv/Aauth.php

0
application/Language/zh-CN/Aauth.php → app/Language/zh-CN/Aauth.php

0
application/Language/zh-TW/Aauth.php → app/Language/zh-TW/Aauth.php

0
application/Libraries/Aauth.php → app/Libraries/Aauth.php

0
application/Models/Aauth/GroupModel.php → app/Models/Aauth/GroupModel.php

0
application/Models/Aauth/GroupToGroupModel.php → app/Models/Aauth/GroupToGroupModel.php

0
application/Models/Aauth/GroupToUserModel.php → app/Models/Aauth/GroupToUserModel.php

0
application/Models/Aauth/LoginAttemptModel.php → app/Models/Aauth/LoginAttemptModel.php

0
application/Models/Aauth/LoginTokenModel.php → app/Models/Aauth/LoginTokenModel.php

0
application/Models/Aauth/PermModel.php → app/Models/Aauth/PermModel.php

0
application/Models/Aauth/PermToGroupModel.php → app/Models/Aauth/PermToGroupModel.php

0
application/Models/Aauth/PermToUserModel.php → app/Models/Aauth/PermToUserModel.php

0
application/Models/Aauth/UserModel.php → app/Models/Aauth/UserModel.php

0
application/Models/Aauth/UserVariableModel.php → app/Models/Aauth/UserVariableModel.php

0
application/Views/Aauth/RemindPassword.php → app/Views/Aauth/RemindPassword.php

0
application/Views/Aauth/ResetPassword.php → app/Views/Aauth/ResetPassword.php

0
application/Views/Aauth/Verification.php → app/Views/Aauth/Verification.php

0
application/Views/Account/Edit.php → app/Views/Account/Edit.php

0
application/Views/Account/Home.php → app/Views/Account/Home.php

0
application/Views/Account/Login.php → app/Views/Account/Login.php

0
application/Views/Account/Register.php → app/Views/Account/Register.php

0
application/Views/Account/RemindPassword.php → app/Views/Account/RemindPassword.php

0
application/Views/Account/ResetPassword.php → app/Views/Account/ResetPassword.php

0
application/Views/Account/Verification.php → app/Views/Account/Verification.php

0
application/Views/Admin/Home.php → app/Views/Admin/Home.php

0
application/Views/Admin/Migrate.php → app/Views/Admin/Migrate.php

0
application/Views/Admin/Users/Home.php → app/Views/Admin/Users/Home.php

0
application/Views/Admin/Users/New.php → app/Views/Admin/Users/New.php

0
application/Views/Home.php → app/Views/Home.php

0
application/Views/Pagers/bootstrap_full.php → app/Views/Pagers/bootstrap_full.php

0
application/Views/Templates/Footer.php → app/Views/Templates/Footer.php

0
application/Views/Templates/FooterAdmin.php → app/Views/Templates/FooterAdmin.php

0
application/Views/Templates/FooterBlank.php → app/Views/Templates/FooterBlank.php

0
application/Views/Templates/Header.php → app/Views/Templates/Header.php

0
application/Views/Templates/HeaderAdmin.php → app/Views/Templates/HeaderAdmin.php

0
application/Views/Templates/HeaderBlank.php → app/Views/Templates/HeaderBlank.php

Loading…
Cancel
Save