blob: 19c259cd7cbdedb78e0edcb2e6a7a5606d0393eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
config.absolute_base_url = "https://lqfb.example.com/lf"
config.instance_name = "lf"
config.database = { engine='postgresql', dbname='liquid_feedback', user='liquid_feedback', password='xxx'}
config.enable_debug_trace = true
execute.config("init")
config.formatting_engine_executeables = {
rocketwiki= "rocketwiki-lqfb",
compat = "rocketwiki-lqfb-compat"
}
-- Checkbox(es) the user has to accept while registering
--
--
----
--------------------------------------------------------------------------
config.use_terms_checkboxes = {
{
name = "terms_of_use_v1",
html = "I accept the terms of use.",
not_accepted_error = "You have to accept the terms of use to be able to regi ster."
},
-- {
-- name = "extra_terms_of_use_v1",
-- html = "I accept the extra terms of use.",
-- not_accepted_error = "You have to accept the extra terms of use to be able to register."
-- }
}
|