-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: try using Buffer for base64 * feat: added authz to control page visibility * feat: UI for account management * chore: prepare PCI DSS report release --------- Co-authored-by: Christopher Langton <chris@vulnetix.com>
- Loading branch information
1 parent
13c15e1
commit 881aa73
Showing
8 changed files
with
5,244 additions
and
42 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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
Submodule api
updated
from 818d91 to d9e5d3
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,95 @@ | ||
-- CreateTable | ||
CREATE TABLE "Report" ( | ||
"uuid" TEXT NOT NULL PRIMARY KEY, | ||
"lastGenerated" INTEGER NOT NULL, | ||
"initialDate" INTEGER NOT NULL, | ||
"assessmentDueDate" INTEGER NOT NULL, | ||
"status" TEXT NOT NULL DEFAULT 'draft', | ||
"orgId" TEXT NOT NULL | ||
); | ||
|
||
-- CreateTable | ||
CREATE TABLE "ReportType" ( | ||
"uuid" TEXT NOT NULL PRIMARY KEY, | ||
"type" TEXT NOT NULL, | ||
"version" TEXT NOT NULL | ||
); | ||
|
||
-- CreateTable | ||
CREATE TABLE "ReportingInstructions" ( | ||
"uuid" TEXT NOT NULL PRIMARY KEY, | ||
"text" TEXT NOT NULL | ||
); | ||
|
||
-- CreateTable | ||
CREATE TABLE "Requirement" ( | ||
"uuid" TEXT NOT NULL PRIMARY KEY, | ||
"reportTypeId" TEXT NOT NULL, | ||
"title" TEXT NOT NULL, | ||
"description" TEXT NOT NULL, | ||
"currentlyBestPractice" INTEGER NOT NULL DEFAULT 0, | ||
"serviceProvidersOnly" INTEGER NOT NULL DEFAULT 0 | ||
); | ||
|
||
-- CreateTable | ||
CREATE TABLE "TestingProcedure" ( | ||
"uuid" TEXT NOT NULL PRIMARY KEY, | ||
"reportTypeId" TEXT NOT NULL, | ||
"requirementId" TEXT NOT NULL, | ||
"description" TEXT NOT NULL | ||
); | ||
|
||
-- CreateTable | ||
CREATE TABLE "RequirementResult" ( | ||
"uuid" TEXT NOT NULL PRIMARY KEY, | ||
"requirementId" TEXT NOT NULL, | ||
"reportId" TEXT NOT NULL, | ||
"orgId" TEXT NOT NULL, | ||
"detail" TEXT NOT NULL, | ||
"assessmentFinding" TEXT NOT NULL DEFAULT 'Not Tested', | ||
"method" TEXT, | ||
"step1" TEXT NOT NULL DEFAULT '', | ||
"step2" TEXT NOT NULL DEFAULT '', | ||
"step3" TEXT NOT NULL DEFAULT '', | ||
"step4" TEXT NOT NULL DEFAULT '' | ||
); | ||
|
||
-- CreateTable | ||
CREATE TABLE "RequirementScope" ( | ||
"uuid" TEXT NOT NULL PRIMARY KEY, | ||
"orgId" TEXT NOT NULL, | ||
"requirementResultId" TEXT NOT NULL, | ||
"repoName" TEXT NOT NULL | ||
); | ||
|
||
-- CreateTable | ||
CREATE TABLE "TestingProcedureResult" ( | ||
"uuid" TEXT NOT NULL PRIMARY KEY, | ||
"testingProcedureId" TEXT NOT NULL, | ||
"requirementResultId" TEXT NOT NULL, | ||
"reportingDetails" TEXT NOT NULL | ||
); | ||
|
||
-- CreateTable | ||
CREATE TABLE "_TestingProcedureEvidence" ( | ||
"A" TEXT NOT NULL, | ||
"B" TEXT NOT NULL | ||
); | ||
|
||
-- CreateTable | ||
CREATE TABLE "_TestingProcedureInstructions" ( | ||
"A" TEXT NOT NULL, | ||
"B" TEXT NOT NULL | ||
); | ||
|
||
-- CreateIndex | ||
CREATE UNIQUE INDEX "_TestingProcedureEvidence_AB_unique" ON "_TestingProcedureEvidence"("A", "B"); | ||
|
||
-- CreateIndex | ||
CREATE INDEX "_TestingProcedureEvidence_B_index" ON "_TestingProcedureEvidence"("B"); | ||
|
||
-- CreateIndex | ||
CREATE UNIQUE INDEX "_TestingProcedureInstructions_AB_unique" ON "_TestingProcedureInstructions"("A", "B"); | ||
|
||
-- CreateIndex | ||
CREATE INDEX "_TestingProcedureInstructions_B_index" ON "_TestingProcedureInstructions"("B"); |
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
Submodule shared
updated
from e1e91c to a84022
Submodule src
updated
from f7621d to ceb761