-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7cfae84
commit 075d4f7
Showing
27 changed files
with
2,706 additions
and
0 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
4 changes: 4 additions & 0 deletions
4
test/fixtures/permission-validation/schemas/Document.category
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,4 @@ | ||
Registry({ | ||
Name: { domain: 'Nomen', required: true }, | ||
Catalog: Catalog() | ||
}) |
3 changes: 3 additions & 0 deletions
3
test/fixtures/permission-validation/schemas/Document.getDocumentName.action
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,3 @@ | ||
Action({ | ||
Execute: async () => 'getDocumentName called', | ||
}) |
3 changes: 3 additions & 0 deletions
3
test/fixtures/permission-validation/schemas/DocumentApplication.application
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,3 @@ | ||
Application({ | ||
Categories: ['Document'], | ||
}); |
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,4 @@ | ||
Registry({ | ||
Name: { domain: 'Nomen', required: true }, | ||
Subsystem: Subsystem() | ||
}) |
3 changes: 3 additions & 0 deletions
3
test/fixtures/permission-validation/schemas/Person.getPersonName.action
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,3 @@ | ||
Action({ | ||
Execute: async () => 'getPersonName called', | ||
}) |
3 changes: 3 additions & 0 deletions
3
test/fixtures/permission-validation/schemas/PersonApplication.application
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,3 @@ | ||
Application({ | ||
Categories: ['Person'], | ||
}); |
5 changes: 5 additions & 0 deletions
5
test/fixtures/permission-validation/schemas/PersonDocument.category
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 @@ | ||
Registry({ | ||
Name: { domain: 'Nomen', required: true }, | ||
Subsystem: Subsystem(), | ||
Catalog: Catalog() | ||
}) |
3 changes: 3 additions & 0 deletions
3
test/fixtures/permission-validation/schemas/PersonDocument.getPersonDocumentName.action
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,3 @@ | ||
Action({ | ||
Execute: async () => 'getPersonDocumentName called', | ||
}) |
4 changes: 4 additions & 0 deletions
4
test/fixtures/permission-validation/schemas/PublicAction.action
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,4 @@ | ||
Action({ | ||
Public: true, | ||
Execute: async () => 'PublicAction called', | ||
}) |
Oops, something went wrong.