diff --git a/.git-blame-ignore-revs b/.git-blame-ignore-revs index 01bd34f4..5b60b73a 100644 --- a/.git-blame-ignore-revs +++ b/.git-blame-ignore-revs @@ -7,5 +7,5 @@ b7d4540c32075cbf569d9c8e256a8ce9898c7115 # Fix Agent Job Type fixtures 0c88a71473a906c87c58c94cc11743f79711d240 -# Generate DocType types +# Generate PageType types a965b98b90fadf438c5f0a22c5778896743a94e7 \ No newline at end of file diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index a957c5cb..31dc92df 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -168,7 +168,7 @@ jobs: - name: Setup Test Users working-directory: /home/runner/jingrow-bench/apps/jcloude/dashboard run: | - bench --site test_site execute jcloude.jcloude.doctype.team.test_team.create_test_jcloude_admin_team \ + bench --site test_site execute jcloude.jcloude.pagetype.team.test_team.create_test_jcloude_admin_team \ --kwargs "{\"email\": \"${JCLOUDE _ADMIN_USER_EMAIL}\", \"free_account\": True, \"skip_onboarding\": True}" bench --site test_site set-password "$JCLOUDE _ADMIN_USER_EMAIL" "$JCLOUDE _ADMIN_USER_PASSWORD" diff --git a/dashboard/src/components/AccessRequestButton.vue b/dashboard/src/components/AccessRequestButton.vue index f287c4b8..d1a1aff2 100644 --- a/dashboard/src/components/AccessRequestButton.vue +++ b/dashboard/src/components/AccessRequestButton.vue @@ -7,12 +7,12 @@ () => { renderDialog( h(DialogComponent, { - doctype, + pagetype, docname, onOpenRequestDialog: () => { renderDialog( h(AccessRequestDialog, { - doctype, + pagetype, docname, }), ); @@ -32,7 +32,7 @@ import AccessRequestDialog from './AccessRequestDialog.vue'; import AccessRequestStatusDialog from './AccessRequestStatusDialog.vue'; const props = defineProps<{ - doctype: string; + pagetype: string; docname: string; pg?: any; error?: Error; diff --git a/dashboard/src/components/AccessRequestDialog.vue b/dashboard/src/components/AccessRequestDialog.vue index a7ba7c1d..93381325 100644 --- a/dashboard/src/components/AccessRequestDialog.vue +++ b/dashboard/src/components/AccessRequestDialog.vue @@ -21,7 +21,7 @@

Are you sure you want to request access to this resource?

-

Type: {{ props.doctype }}

+

Type: {{ props.pagetype }}

Resource: {{ props.docname }}