|
... |
|
... |
28 |
__version__ = version.__version__
|
28 |
__version__ = version.__version__
|
29 |
config_options = Application.config_options + [
|
29 |
config_options = Application.config_options + [
|
30 |
ConfigOption('project_name', str, 'pname'),
|
30 |
ConfigOption('project_name', str, 'pname'),
|
31 |
ConfigOption('message', str, 'Custom message goes here') ]
|
31 |
ConfigOption('message', str, 'Custom message goes here') ]
|
32 |
permissions = [ 'configure', 'read', 'create', 'edit', 'delete', 'comment' ]
|
32 |
permissions = [ 'configure', 'read', 'create', 'edit', 'delete', 'comment' ]
|
|
|
33 |
installable=False
|
33 |
def __init__(self, project, config):
|
34 |
def __init__(self, project, config):
|
34 |
Application.__init__(self, project, config)
|
35 |
Application.__init__(self, project, config)
|
35 |
self.root = RootController()
|
36 |
self.root = RootController()
|
36 |
|
37 |
|
37 |
@audit('hello_forge.#')
|
38 |
@audit('hello_forge.#')
|