Ejemplo n.º 1
0
Archivo: media.py Proyecto: algha/tarim
 def rules():
     return [
         Rule('list', type=['native']),
         Rule('upload', '/upload', 'POST', method='Upload'),
         Rule('ajax', '/ajax_media', method='ajaxMedia')
     ]
Ejemplo n.º 2
0
Archivo: type.py Proyecto: algha/tarim
 def rules():
     return [Rule('list', type=['native'])]
Ejemplo n.º 3
0
Archivo: type.py Proyecto: algha/tarim
 def rules():
     return [
         Rule('create', '/create', 'POST'),
         Rule('edit', '/<id>/edit', 'POST')
     ]
Ejemplo n.º 4
0
Archivo: tags.py Proyecto: algha/tarim
 def rules():
     return [Rule('edit', '/<id>/edit', 'POST')]
Ejemplo n.º 5
0
 def rules():
     return [
         Rule('list', '', type = ['native']),
         Rule('list_delete', '/<id>/delete', 'DELETE', method = 'delete')
     ]
Ejemplo n.º 6
0
Archivo: tags.py Proyecto: algha/tarim
 def rules():
     return [
         Rule('list', '', type=['native']),
         Rule('search', '/search', method='Search')
     ]
Ejemplo n.º 7
0
 def rules():
     return [
         Rule('create', '/create/<permission_id>/permission', 'POST'),
         Rule('edit', '/<int:id>/edit/<permission_id>/permission', 'POST')
     ]
Ejemplo n.º 8
0
 def rules():
     return [
         Rule('main', '/main'),
         Rule('logout', '/logout', method='Logout')
     ]
Ejemplo n.º 9
0
 def rules():
     return [
         Rule('list', '/<id>/type', 'POST'),
         Rule('sort', '/sort', 'POST', method='Sort')
     ]
Ejemplo n.º 10
0
 def rules():
     return [Rule('list')]