mirror of
https://github.com/Decentralized-ID/decentralized-id.github.io.git
synced 2024-12-17 11:34:30 -05:00
no transforms
This commit is contained in:
parent
8f45e69694
commit
83baed79d5
@ -1,54 +1,18 @@
|
|||||||
# Name of the property. You can have multiple properties with completely
|
|
||||||
# different config blocks for different sections of your site.
|
|
||||||
# For example, you can have one property to handle comment submission and
|
|
||||||
# another one to handle posts.
|
|
||||||
# To encrypt strings use the following endpoint:
|
# To encrypt strings use the following endpoint:
|
||||||
# https://api.staticman.net/v2/encrypt/{TEXT TO BE ENCRYPTED}
|
# https://api.staticman.net/v2/encrypt/{TEXT TO BE ENCRYPTED}
|
||||||
|
|
||||||
comments:
|
comments:
|
||||||
# (*) REQUIRED
|
|
||||||
#
|
|
||||||
# Names of the fields the form is allowed to submit. If a field that is
|
|
||||||
# not here is part of the request, an error will be thrown.
|
|
||||||
allowedFields: ["name", "email", "url", "message"]
|
allowedFields: ["name", "email", "url", "message"]
|
||||||
|
allowedOrigins: ["decentralized-id.com"]
|
||||||
# (*) REQUIRED WHEN USING NOTIFICATIONS
|
|
||||||
#
|
|
||||||
# When allowedOrigins is defined, only requests sent from one of the domains
|
|
||||||
# listed will be accepted. The origin is sent as part as the `options` object
|
|
||||||
# (e.g. <input name="options[origin]" value="http://yourdomain.com/post1")
|
|
||||||
# allowedOrigins: ["yourdomain.com"]
|
|
||||||
|
|
||||||
# (*) REQUIRED
|
|
||||||
#
|
|
||||||
# Name of the branch being used. Must match the one sent in the URL of the
|
|
||||||
# request.
|
|
||||||
branch: "master"
|
branch: "master"
|
||||||
|
|
||||||
commitMessage: "New comment by {fields.name}"
|
commitMessage: "New comment by {fields.name}"
|
||||||
|
|
||||||
# (*) REQUIRED
|
|
||||||
#
|
|
||||||
# Destination path (filename) for the data files. Accepts placeholders.
|
|
||||||
filename: "comment-{@timestamp}"
|
filename: "comment-{@timestamp}"
|
||||||
|
|
||||||
# The format of the generated data files. Accepted values are "json", "yaml"
|
|
||||||
# or "frontmatter"
|
|
||||||
format: "yaml"
|
format: "yaml"
|
||||||
|
|
||||||
# List of fields to be populated automatically by Staticman and included in
|
|
||||||
# the data file. Keys are the name of the field. The value can be an object
|
|
||||||
# with a `type` property, which configures the generated field, or any value
|
|
||||||
# to be used directly (e.g. a string, number or array)
|
|
||||||
generatedFields:
|
generatedFields:
|
||||||
date:
|
date:
|
||||||
type: "date"
|
type: "date"
|
||||||
options:
|
options:
|
||||||
format: "iso8601" # "iso8601" (default), "timestamp-seconds", "timestamp-milliseconds"
|
format: "iso8601" # "iso8601" (default), "timestamp-seconds", "timestamp-milliseconds"
|
||||||
|
|
||||||
# Whether entries need to be approved before they are published to the main
|
|
||||||
# branch. If set to `true`, a pull request will be created for your approval.
|
|
||||||
# Otherwise, entries will be published to the main branch automatically.
|
|
||||||
moderation: true
|
moderation: true
|
||||||
|
|
||||||
# Akismet spam detection.
|
# Akismet spam detection.
|
||||||
@ -60,7 +24,6 @@ comments:
|
|||||||
# content: "message"
|
# content: "message"
|
||||||
# type: "comment"
|
# type: "comment"
|
||||||
|
|
||||||
# Name of the site. Used in notification emails.
|
|
||||||
name: "Decentralized-id.com"
|
name: "Decentralized-id.com"
|
||||||
|
|
||||||
# Notification settings. When enabled, users can choose to receive notifications
|
# Notification settings. When enabled, users can choose to receive notifications
|
||||||
@ -80,22 +43,10 @@ comments:
|
|||||||
# Mailgun domain (encrypted)
|
# Mailgun domain (encrypted)
|
||||||
# domain: ""
|
# domain: ""
|
||||||
|
|
||||||
# (*) REQUIRED
|
|
||||||
#
|
|
||||||
# Destination path (directory) for the data files. Accepts placeholders.
|
|
||||||
path: "_data/comments/{options.slug}" # "_data/comments/{options.slug}" (default)
|
path: "_data/comments/{options.slug}" # "_data/comments/{options.slug}" (default)
|
||||||
|
|
||||||
# Names of required files. If any of these isn't in the request or is empty,
|
|
||||||
# an error will be thrown.
|
|
||||||
requiredFields: ["name", "email", "message"]
|
requiredFields: ["name", "email", "message"]
|
||||||
|
|
||||||
# List of transformations to apply to any of the fields supplied. Keys are
|
|
||||||
# the name of the field and values are possible transformation types.
|
|
||||||
transforms:
|
transforms:
|
||||||
email: md5
|
email: #md5
|
||||||
|
|
||||||
# reCaptcha
|
|
||||||
# Register your domain at https://www.google.com/recaptcha/ and choose reCAPTCHA V2
|
|
||||||
reCaptcha:
|
reCaptcha:
|
||||||
enabled: false
|
enabled: false
|
||||||
siteKey: #"6LdRBykTAAAAAFB46MnIu6ixuxwu9W1ihFF8G60Q"
|
siteKey: #"6LdRBykTAAAAAFB46MnIu6ixuxwu9W1ihFF8G60Q"
|
||||||
|
Loading…
Reference in New Issue
Block a user