goa/overrides/server__init__.py
changeset 0 b97547f5f1fa
child 1977 606923dff11b
equal deleted inserted replaced
-1:000000000000 0:b97547f5f1fa
       
     1 # server debugging flag
       
     2 DEBUG = False
       
     3 
       
     4 # sqlite'stored procedures have to be registered at connexion opening time
       
     5 SQL_CONNECT_HOOKS = {}
       
     6 
       
     7 # add to this set relations which should have their add security checking done
       
     8 # *BEFORE* adding the actual relation (done after by default)
       
     9 BEFORE_ADD_RELATIONS = set(('owned_by',))
       
    10 
       
    11 # add to this set relations which should have their add security checking done
       
    12 # *at COMMIT TIME* (done after by default)
       
    13 ON_COMMIT_ADD_RELATIONS = set(())
       
    14 
       
    15 # available sources registry
       
    16 SOURCE_TYPES = {}