-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: OAuth api permissions and user creation (#131)
* fix: ui adjustment to page titles * feat: create service user insert form * feat: add service user permissions and introspection to API auth * fix: types for email not null * wip * fix: user actions return first user Signed-off-by: Francisco Madeira <[email protected]> * refactor: components with version query Signed-off-by: Francisco Madeira <[email protected]> * refactor: projects page only render one tab content at a time Signed-off-by: Francisco Madeira <[email protected]> --------- Signed-off-by: Francisco Madeira <[email protected]> Co-authored-by: Rui Silva <[email protected]> Signed-off-by: Francisco Madeira <[email protected]>
- Loading branch information
1 parent
4de31a3
commit a071af6
Showing
46 changed files
with
740 additions
and
563 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@ethereal-nexus/dashboard': minor | ||
--- | ||
|
||
feat: added service users auth for API calls |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,7 +50,7 @@ jobs: | |
echo "${{ secrets.DRIZZLE_DATABASE_URL }}" >> .env | ||
corepack enable && corepack prepare [email protected] --activate | ||
pnpm i --frozen-lockfile | ||
pnpm --filter "@ethereal-nexus/dashboard" run db:push --force | ||
pnpm --filter "@ethereal-nexus/dashboard" run db:push | ||
sed -i '/^DRIZZLE_DATABASE_URL/d' .env | ||
- name: Build and push container image to registry | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -58,7 +58,7 @@ jobs: | |
corepack enable && corepack prepare [email protected] --activate | ||
pnpm i --frozen-lockfile | ||
pnpm --filter "@ethereal-nexus/dashboard" run db:push --force | ||
pnpm --filter "@ethereal-nexus/dashboard" run db:push | ||
- name: Deploy Container App | ||
uses: azure/container-apps-deploy-action@v1 | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 0 additions & 1 deletion
1
web/dashboard/src/app/(session)/(admin)/users/(modal)/(.)new/page.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
import React from "react"; | ||
|
||
import NewUserModal from './modal'; | ||
|
||
export default function NewUserModalPage() { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.