Frontend | Backend | Api

Faq routes (Frontend)

Name Request Response variables Description
showPage

GET /faq/page/{fullSlug}

fullSlug .+
Name Type Description
page Page Single Page record
Show a single record
listQuestions

GET /faq/questions

Name Type Description
questions Collection (Question) Collection of Questions
Retrieve a list of records and assign them to the template.
listTagsQuestions

GET /faq/questions/tags/{tags}/{page}

tags ^[\w\-]*[a-zA-Z0-9\x7f-\xff]+[\w\-]*([\+,][\w\-]*[a-zA-Z0-9\x7f-\xff]+[\w\-])*$
page \d+
Name Type Description
questions Collection (Question) Collection of Questions
Retrieve a list of records and assign them to the template.
listCategoriesQuestions

GET /faq/questions/categories/{categories}/{page}

categories ^[\w\-]*[a-zA-Z0-9\x7f-\xff]+[\w\-]*([\+,][\w\-]*[a-zA-Z0-9\x7f-\xff]+[\w\-])*$
page \d+
Name Type Description
questions Collection (Question) Collection of Questions
Retrieve a list of records and assign them to the template.
showQuestion

GET /faq/question/{slug}

slug ^(?:[\w\-]*[a-zA-Z0-9\x7f-\xff]+)+[\w]*$
Name Type Description
question Question Single Question record
Show a single record