|
|
8237a71f52
|
app/forms/Registration.php: change Uniqueness validator to Callback + cleanup username validators abit.
|
2018-08-15 21:59:43 +02:00 |
|
|
|
c71416908a
|
app/library/Auth.php: in loginOauth() no need to set status active anymore User::findFirstByOAuth() do not return deleted users.
|
2018-08-15 21:56:54 +02:00 |
|
|
|
9bd0ef86fc
|
app/models/Data/User.php: in findFirstByOAuthID() also only fetch rows where status != deleted
|
2018-08-15 21:48:29 +02:00 |
|
|
|
0bf7c54539
|
app/models/Data/User.php: change validation from Uniqueness to Callback and check findFirstByUsername() and findFirstByEmail()
|
2018-08-15 21:42:43 +02:00 |
|
|
|
6876cc13be
|
app/models/Data/User.php: adding findFirstByUsername()
|
2018-08-15 21:41:05 +02:00 |
|
|
|
aced9f8bf3
|
app/models/Data/User.php: in findFirstByEmail() only fetch rows with Status != deleted.
|
2018-08-15 21:40:26 +02:00 |
|
|
|
ec5c6f2d14
|
app/models/Data/User.php: adding findFirstByEmail()
|
2018-08-14 23:22:31 +02:00 |
|
|
|
2529d29d80
|
app/controllers/AuthController.php: in oauthAction() redirect to registration page if no user is found.
|
2018-08-14 23:22:30 +02:00 |
|
|
|
7b2f53e4dc
|
app/controllers/AuthController.php: add registerAction()
|
2018-08-14 23:18:24 +02:00 |
|
|
|
a337ccd4fa
|
app/library/OAuth/UserData/UserDataInterface.php: add toArray()
|
2018-08-14 23:18:24 +02:00 |
|
|
|
43417740a7
|
app/library/OAuth/UserData: make all concrete classes extend UserData.
|
2018-08-14 23:18:23 +02:00 |
|
|
|
4a22f67e62
|
adding app/library/OAuth/UserData/UserData.php
|
2018-08-14 23:18:23 +02:00 |
|
|
|
6eb08d7a70
|
adding app/forms/Registration.php
|
2018-08-14 23:18:23 +02:00 |
|
|
|
31d5740681
|
app/library/Auth.php: adding systemLogin()
|
2018-08-14 23:18:22 +02:00 |
|
|
|
968ca64c1d
|
adding app/views/auth/register.volt
|
2018-08-14 23:18:22 +02:00 |
|
|
|
ad3bbdd6bc
|
app/models/Data/User.php: adding setOAuthId()
|
2018-08-14 23:18:22 +02:00 |
|
|
|
ddb9d8934d
|
adding app/library/Form.php
|
2018-08-14 23:18:21 +02:00 |
|
|
|
316edec020
|
app/library/Auth.php: in loginOauth() should return false if there is no user.
|
2018-08-14 23:18:21 +02:00 |
|
|
|
bfa71745e0
|
adding app/assets/less/components/spacer.less
|
2018-08-14 21:43:04 +02:00 |
|
|
|
808afbac17
|
adding app/assets/less/views/register.less
|
2018-08-14 21:43:04 +02:00 |
|
|
|
6c14bf9873
|
app/config/routes.yml: add '/register' route.
|
2018-08-14 21:43:03 +02:00 |
|
|
|
f65832332b
|
app/library/OAuth/UserData/Gitlab.php: oops, forgot a var_dump()
|
2018-08-14 21:42:20 +02:00 |
|
|
|
887908d733
|
app/models/Data/User.php: split name into first/last name.
|
2018-08-14 21:20:28 +02:00 |
|
|
|
a9081dcfc8
|
migration: 20180814172405_user_split_name.php
|
2018-08-14 21:17:19 +02:00 |
|
|
|
db478d671c
|
composer: update phinx
|
2018-08-14 21:17:19 +02:00 |
|
|
|
f32c80ba13
|
app/controllers/ControllerBase.php: fixing autocomplete.
|
2018-08-14 21:17:19 +02:00 |
|
|
|
c65020fa43
|
app/library/OAuth/UserData/UserDataInterface.php: adding getFirstname() and getLastname()
|
2018-08-14 21:17:04 +02:00 |
|
|
|
5d60b0f238
|
remove app/views/auth/oauthCallback.volt
|
2018-08-13 01:14:31 +02:00 |
|
|
|
6d8025c5d6
|
Merge branch '14-user-add-support-for-removing-account' into dev
|
2018-08-13 01:11:52 +02:00 |
|
|
|
b722ecd836
|
app/library/Auth.php: minor fix.
|
2018-08-11 20:15:03 +02:00 |
|
|
|
b47f2eb741
|
app/config/routes.yml: add pattern for activation-link
|
2018-08-11 20:13:42 +02:00 |
|
|
|
7fd242a28a
|
app/controllers/AuthController.php: minor fix.
|
2018-08-11 13:35:35 +02:00 |
|
|
|
be0a64a01c
|
app/library/Services.php: fixing some namespace issues.
|
2018-08-11 01:13:01 +02:00 |
|
|
|
2cccbf2f98
|
app/controllers/UserController.php: in settingsAction() use Phalcon\Security::hash() instead of password_hash()
|
2018-08-10 20:40:04 +02:00 |
|
|
|
31ac9224b3
|
app/library/Auth.php: in login() use Phalcon\Security::checkHash() instead of password_verify()
|
2018-08-10 20:39:16 +02:00 |
|
|
|
a50f460413
|
app/library/Auth.php: in loginOauth() activate deleted accounts.
|
2018-08-10 20:35:24 +02:00 |
|
|
|
ecf38258f5
|
app/models/Data/User.php: in findFirstByUsernameOrEmail() only select active users.
|
2018-08-10 20:30:59 +02:00 |
|
|
|
0e7849e5f7
|
app/controllers/UserController.php: add deleteAction()
|
2018-08-10 20:23:17 +02:00 |
|
|
|
6ce456fff7
|
app/views/user/settings.volt: adding "Delete account" button.
|
2018-08-10 20:16:45 +02:00 |
|
|
|
aea09efddb
|
app/assets/less/vendor/bootstrap-framework.less: include modal code.
|
2018-08-10 17:47:28 +02:00 |
|
|
|
b096381aaf
|
less: adding contextual buttons.
|
2018-08-10 17:44:28 +02:00 |
|
|
|
9af7b3cc01
|
minor cleanups.
|
2018-08-10 16:48:48 +02:00 |
|
|
|
4c872d76dd
|
package.json: last commit did not do the trick skipping '-e main' as it is the default anyway.
|
2018-08-10 16:39:44 +02:00 |
|
|
|
adeb1e6368
|
package.json: fixing dbmigrate script.
|
2018-08-10 16:20:42 +02:00 |
|
|
|
4d7341926d
|
composer.lock
|
2018-08-10 16:15:57 +02:00 |
|
|
|
b3e6bcbafd
|
package.json: call for dbmigrate script. run "npm run phinx" instead of phinx directly.
|
2018-08-10 16:13:48 +02:00 |
|
|
|
694eac24ef
|
app/library/Acl.php: some cleanup.
|
2018-08-10 15:49:44 +02:00 |
|
|
|
d6dbb6e085
|
Adding README
|
2018-08-10 01:44:15 +02:00 |
|
|
|
972e6cb4f8
|
Merge branch '12-oauth-linkedin' into 'dev'
Resolve "OAuth - LinkedIn"
Closes #12
See merge request pnx/httpcb!17
|
2018-08-09 12:26:32 +00:00 |
|
|
|
e42201dde3
|
package.json: version bump.
|
2018-08-08 23:46:15 +02:00 |
|