From 5b4a5a475a9b25d492e8fe2b2267ff47c9e1f7f7 Mon Sep 17 00:00:00 2001 From: Crawford Long Date: Sat, 30 Mar 2024 20:07:38 +0000 Subject: [PATCH] Added default wizard templates --- .gopass/create/0-websites.yml | 21 +++++++++++++++++++++ .gopass/create/1-pin.yml | 25 +++++++++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 .gopass/create/0-websites.yml create mode 100644 .gopass/create/1-pin.yml diff --git a/.gopass/create/0-websites.yml b/.gopass/create/0-websites.yml new file mode 100644 index 0000000..9c5d5a5 --- /dev/null +++ b/.gopass/create/0-websites.yml @@ -0,0 +1,21 @@ +--- +priority: 0 +name: "Website login" +prefix: "websites" +name_from: + - "url" + - "username" +welcome: "🧪 Creating Website login" +attributes: + - name: "url" + type: "hostname" + prompt: "Website URL" + min: 1 + max: 255 + - name: "username" + type: "string" + prompt: "Username" + min: 1 + - name: "password" + type: "password" + prompt: "Password for the Website" diff --git a/.gopass/create/1-pin.yml b/.gopass/create/1-pin.yml new file mode 100644 index 0000000..69c45f5 --- /dev/null +++ b/.gopass/create/1-pin.yml @@ -0,0 +1,25 @@ +--- +priority: 1 +name: "PIN Code (numerical)" +prefix: "pin" +name_from: + - "authority" + - "application" +welcome: "🧪 Creating numerical PIN" +attributes: + - name: "authority" + type: "string" + prompt: "Authority" + min: 1 + - name: "application" + type: "string" + prompt: "Entity" + min: 1 + - name: "password" + type: "password" + prompt: "Pin" + charset: "0123456789" + min: 1 + max: 64 + - name: "comment" + type: "string"