products.yml

products.yml Configuration File & information about it.

This File is used to store Products, all you have to do is to create Product in this config and upload (if type: "FILE") file into products folder with same name as specified in product: "" field. If you want to just use link, fill in product field with link you want.

File

So let's see the file!

# ________________________________________________
#
#         PRODUCTS LIST CONFIGURATION FILE
#
# Here you can add products which users will be able to download
# or to get link to something.
#
# ________________________________________________

# List of Products
products:
    # Name for Product
  - name: "File Name"
    # Product Description
    description: "File Description"
    # Type of Product, can be FILE or LINK
    type: "FILE"
    # Name of File from products Folder (with extension) or Link if type is LINK
    # Examples: Test.txt, https://mc-market.org
    product: ""
    # Role(s) required to download
    roles: []
    # Permission(s) required to download
    permissions: []

Last updated