|
baec55b8a9
|
code format
|
2024-04-12 15:43:30 -07:00 |
|
|
c5a32c68a5
|
login now returns json with token info
|
2024-04-12 15:43:00 -07:00 |
|
|
adf6c1e9dd
|
Merge pull request 'features/module-name' (#14) from features/module-name into main
Reviewed-on: #14
|
2024-04-05 17:55:06 -07:00 |
|
|
bfa28e07da
|
updated rest testing
|
2024-04-05 17:53:50 -07:00 |
|
|
fbd799c8ed
|
Added migrations on startup
|
2024-04-05 17:53:28 -07:00 |
|
|
3acf9ac542
|
packages cleaned up and then updated the module name so I can import it into other projects!
|
2024-04-05 17:51:58 -07:00 |
|
|
8dd80e4806
|
even more module updates!
|
2024-04-05 17:51:21 -07:00 |
|
|
935f8f5003
|
more module name updates
|
2024-04-05 17:51:02 -07:00 |
|
|
4e4fee53bf
|
module updates
|
2024-04-05 17:50:29 -07:00 |
|
|
671ee21355
|
Starting API unit tests!.... yay
|
2024-04-05 17:50:04 -07:00 |
|
|
fc0140e5a4
|
this request should have had the full username, and not just name...
|
2024-04-05 17:49:47 -07:00 |
|
|
d2aa1b99ce
|
the env will now let you define if the migrations should run on startup
|
2024-04-05 17:49:30 -07:00 |
|
|
0c7c4d311e
|
Merge pull request 'features/working-on-scopes' (#13) from features/working-on-scopes into main
Reviewed-on: #13
|
2024-04-04 15:31:53 -07:00 |
|
|
e0a517a765
|
Added the example on how to remove a scope from someone
|
2024-04-04 15:31:23 -07:00 |
|
|
69fb7a683b
|
updated how it looks to see what scopes to add
|
2024-04-04 15:30:59 -07:00 |
|
|
8f0e8e4d85
|
added remove scopes to the handler
|
2024-04-04 15:30:38 -07:00 |
|
|
9bc36bae7f
|
if the admin token is null then it will fail an admin login. Also added the remove scopes logic and it worked for me
|
2024-04-04 15:30:22 -07:00 |
|
|
8a43c166a8
|
Renamed struct to update a users scopes
|
2024-04-04 15:29:39 -07:00 |
|
|
2e0596c924
|
rest test file has been updated
|
2024-04-03 16:12:34 -07:00 |
|
|
7dc072e849
|
scopes/add now requires jwt and minor ez response methods
|
2024-04-03 16:12:18 -07:00 |
|
|
02c6f4aae7
|
admin jwt now follows the same schema
|
2024-04-03 16:11:46 -07:00 |
|
|
f159582d34
|
user repo now adds a default scope on create and scopes can be replaced for a user
|
2024-04-03 16:11:00 -07:00 |
|
|
f67ed03c9d
|
add and remove scopes methods to user service
|
2024-04-03 16:10:25 -07:00 |
|
|
29f6dc0bb0
|
minor domain updates
|
2024-04-03 16:09:31 -07:00 |
|
|
d9625e0b7d
|
updated how the err response should look to follow a pattern
|
2024-04-02 16:30:14 -07:00 |
|
|
373f7da678
|
auth now uses UrlFormEncoded like it should
|
2024-04-01 17:50:07 -07:00 |
|
|
c071212df5
|
when a user is made, the default scope is now defined
|
2024-04-01 17:48:54 -07:00 |
|
|
b3ee4e420b
|
found a bug that would let the same username get used over and over
|
2024-04-01 17:48:38 -07:00 |
|
|
f591dadd3b
|
adminToken validation now has its own method
|
2024-03-31 18:10:53 -07:00 |
|
|
593ce11c6b
|
moved jwt things to its own file
|
2024-03-31 18:09:24 -07:00 |
|
|
615f1184ab
|
if a user provides the env admin token, a token will generate with god permissions
|
2024-03-31 18:05:33 -07:00 |
|
|
8f10fbfba1
|
mostly reworking how the JWT is processed
|
2024-03-31 17:49:09 -07:00 |
|
|
ec24600269
|
mostly pushing things into domain
|
2024-03-31 17:48:44 -07:00 |
|
|
0d90db89e5
|
added config to the Handler and trying out a standard payload return for unauthorized
|
2024-03-31 17:48:23 -07:00 |
|
|
538ff69c00
|
ignoring all .env files
|
2024-03-31 17:47:52 -07:00 |
|
|
7360d429ff
|
domain update
|
2024-03-31 17:47:39 -07:00 |
|
|
e0253f04e7
|
Added Scopes to the user table
|
2024-03-31 17:47:24 -07:00 |
|
|
0d253270b7
|
added config service on startup
|
2024-03-31 17:47:09 -07:00 |
|
|
6af8a2a0cd
|
refactored for domain
|
2024-03-31 17:46:40 -07:00 |
|
|
09235760d2
|
Added a config service
|
2024-03-31 17:46:20 -07:00 |
|
|
3487feed5c
|
moved models into domain
|
2024-03-31 17:46:04 -07:00 |
|
|
4981ef7f81
|
Merge pull request 'Basic JWT is now working' (#12) from features/jwt/maybe into main
Reviewed-on: #12
|
2024-03-29 14:51:00 -07:00 |
|
|
565e6112a8
|
The jwt token is now checked to see if it expires and will return an error
|
2024-03-29 14:49:57 -07:00 |
|
|
faf0bec069
|
Heck yes! jwt is working and middleware is CHECKING IT !!!!!!!
|
2024-03-27 21:55:25 -07:00 |
|
|
2508dac595
|
woo! I can login and confirm my password with bcrypt!
|
2024-03-27 17:24:23 -07:00 |
|
|
dbe621ca05
|
model structs that are not used yet
|
2024-03-26 17:54:46 -07:00 |
|
|
bbdbb38711
|
postman for vscode
|
2024-03-26 17:54:32 -07:00 |
|
|
d2d524ac4e
|
playing with the handler to get jwt working
|
2024-03-26 17:54:22 -07:00 |
|
|
872db5b9e9
|
added a ErrorResponse struct
|
2024-03-26 17:53:51 -07:00 |
|
|
f78d78d061
|
added a interface and adding to CRUD
|
2024-03-26 17:53:22 -07:00 |
|