Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Titus tasks for gerolstein #512

Merged
merged 36 commits into from
Oct 20, 2023
Merged
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
b5d8dbb
Update ddates
TitusKirch Oct 14, 2023
16bc9c0
Improve Module seeder logic
TitusKirch Oct 14, 2023
1487019
Fix naming
TitusKirch Oct 14, 2023
c89f94c
Add state logic
TitusKirch Oct 14, 2023
387cd99
Add modules to inertia share
TitusKirch Oct 14, 2023
71fdf8a
Linting
TitusKirch Oct 14, 2023
92aee16
Add random generaot backend
TitusKirch Oct 14, 2023
57b21e4
Generate components
TitusKirch Oct 14, 2023
eb33f44
Sort user by firstname
TitusKirch Oct 15, 2023
51b7088
Proof of Concept up and download from s3
DontEdit Oct 16, 2023
ac06368
Image to s3 nearly done (req to controller not working)
DontEdit Oct 18, 2023
624eee8
s3 Image Upload in user register and s3 show image funciton ready for…
DontEdit Oct 19, 2023
fab72fe
Remove outdated docs
TitusKirch Oct 19, 2023
2862f75
Add spatie permissions
TitusKirch Oct 19, 2023
286157e
Remove dev code
TitusKirch Oct 19, 2023
a6a5880
Migrate to rbac
TitusKirch Oct 19, 2023
164dc59
Update routes
TitusKirch Oct 19, 2023
dc844b2
Fix drop col
TitusKirch Oct 19, 2023
6fbb1f0
All comments implemented
DontEdit Oct 19, 2023
cf2238e
Add super admin role to prevent erros
TitusKirch Oct 19, 2023
21830aa
Add edit view
TitusKirch Oct 19, 2023
7585049
Add link to old register/assigne page
TitusKirch Oct 19, 2023
2f266ae
Add special role
TitusKirch Oct 19, 2023
2a86132
Add disabled flag
TitusKirch Oct 19, 2023
476be5d
Fix namings
TitusKirch Oct 19, 2023
a935efb
Add public api
TitusKirch Oct 19, 2023
021d99d
Improve user view
TitusKirch Oct 19, 2023
d4bcafd
Merge branch 'feat/titus-gerolstein' into feat/vitor
DontEdit Oct 20, 2023
b4d200b
Merge pull request #514 from fsr5-fhaachen/feat/vitor
TitusKirch Oct 20, 2023
2a9c96d
Add missing if
TitusKirch Oct 20, 2023
5438b96
Add missing dependencies
TitusKirch Oct 20, 2023
14c66cc
Improve S3 Implmentation
TitusKirch Oct 20, 2023
cdd2816
Improvee admin ui
TitusKirch Oct 20, 2023
e556ce1
Fix s3 logic
TitusKirch Oct 20, 2023
5b3c1ed
Fix S3 logic
TitusKirch Oct 20, 2023
d859acc
Allow to edit super admins (except roles)
TitusKirch Oct 20, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Linting
TitusKirch committed Oct 14, 2023
commit 71fdf8aaeafe575ae9093173bc4d5df1807b5688
4 changes: 2 additions & 2 deletions database/seeders/ModuleDemoSeeder.php
Original file line number Diff line number Diff line change
@@ -26,8 +26,8 @@ public function run(): void
foreach ($modules as $module) {
// check if module with key already exists
$existingModule = Module::where('key', $module['key'])->first();
if (!$existingModule) {
throw new \Exception('Module with key "' . $module['key'] . '" not found.');
if (! $existingModule) {
throw new \Exception('Module with key "'.$module['key'].'" not found.');
}

// update module
4 changes: 2 additions & 2 deletions database/seeders/ModuleErstiwocheSeeder.php
Original file line number Diff line number Diff line change
@@ -22,8 +22,8 @@ public function run(): void
foreach ($modules as $module) {
// check if module with key already exists
$existingModule = Module::where('key', $module['key'])->first();
if (!$existingModule) {
throw new \Exception('Module with key "' . $module['key'] . '" not found.');
if (! $existingModule) {
throw new \Exception('Module with key "'.$module['key'].'" not found.');
}

// update module
4 changes: 2 additions & 2 deletions database/seeders/ModuleGerolsteinSeeder.php
Original file line number Diff line number Diff line change
@@ -22,8 +22,8 @@ public function run(): void
foreach ($modules as $module) {
// check if module with key already exists
$existingModule = Module::where('key', $module['key'])->first();
if (!$existingModule) {
throw new \Exception('Module with key "' . $module['key'] . '" not found.');
if (! $existingModule) {
throw new \Exception('Module with key "'.$module['key'].'" not found.');
}

// update module