|
a/Allura/allura/model/neighborhood.py |
|
b/Allura/allura/model/neighborhood.py |
|
... |
|
... |
37 |
homepage = FieldProperty(str, if_missing='')
|
37 |
homepage = FieldProperty(str, if_missing='')
|
38 |
redirect = FieldProperty(str, if_missing='')
|
38 |
redirect = FieldProperty(str, if_missing='')
|
39 |
projects = RelationProperty('Project')
|
39 |
projects = RelationProperty('Project')
|
40 |
allow_browse = FieldProperty(bool, if_missing=True)
|
40 |
allow_browse = FieldProperty(bool, if_missing=True)
|
41 |
site_specific_html = FieldProperty(str, if_missing='')
|
41 |
site_specific_html = FieldProperty(str, if_missing='')
|
|
|
42 |
project_template = FieldProperty(str, if_missing='')
|
42 |
|
43 |
|
43 |
def parent_security_context(self):
|
44 |
def parent_security_context(self):
|
44 |
return None
|
45 |
return None
|
45 |
|
46 |
|
46 |
@LazyProperty
|
47 |
@LazyProperty
|