-
Notifications
You must be signed in to change notification settings - Fork 1
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
f15a767
commit 624019a
Showing
2 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
File renamed without changes.
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,31 @@ | ||
name: Site Add | ||
description: Add a site to the blacklist | ||
title: "[Site-add]: " | ||
body: | ||
- type: input | ||
id: url | ||
attributes: | ||
label: URL | ||
description: Enter the URL of the site in question. | ||
placeholder: e.g. phising-url.com | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: user-note | ||
attributes: | ||
label: Notes | ||
description: Why is this site malicious? | ||
placeholder: e.g. Phising attempt | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: threat-level | ||
attributes: | ||
label: Threat level | ||
description: What do you consider this site's threat-level to be? | ||
options: | ||
- 1 (Low) A warning should be displayed when interacting | ||
- 2 (Medium) Site must be explicitly enabled in settings before interacting | ||
- 3 (High) Site should not be allowed under any circumstances | ||
validations: | ||
required: true |