Changeset 140 for trunk/grails-app/conf


Ignore:
Timestamp:
Oct 1, 2009, 5:11:48 AM (15 years ago)
Author:
gav
Message:

Install filterPane plugin and configure for Tasks.

Location:
trunk/grails-app/conf
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/grails-app/conf/BootStrap.groovy

    r137 r140  
    281281                 taskPriority:TaskPriority.get(2),
    282282                 taskType:TaskType.get(1),
    283                  leadPerson:Person.get(3),
     283                 leadPerson:Person.get(2),
    284284                 description:"Check specific level sensor",
    285285                 comment:"Has been noted as problematic, try recalibrating.")
  • trunk/grails-app/conf/Config.groovy

    r139 r140  
    8686    [order:20, controller:'taskDetailed', title:'tasks', action:'search',
    8787        subItems: [
    88             [order:10, controller:'taskDetailed', title:'Search', action:'search', isVisible: { true }],
     88            [order:10, controller:'taskDetailed', title:'Search', action:'search', isVisible: { params.action != 'advancedSearch'}],
     89            [order:11, controller:'taskDetailed', title:'Advanced Search', action:'advancedSearch', isVisible: { params.action == 'advancedSearch' }],
    8990            [order:20, controller:'taskDetailed', title:'Create', action:'create', isVisible: { true }],
    9091            [order:90, controller:'taskDetailed', title:'Show', action:'show', isVisible: { params.action == 'show' }],
  • trunk/grails-app/conf/SecurityConfig.groovy

    r139 r140  
    4242    '/plugins/richui-0.6/**': ['IS_AUTHENTICATED_FULLY'],
    4343    '/plugins/navigation-1.1/**': ['IS_AUTHENTICATED_FULLY'],
     44    '/plugins/filterpane-0.6.2/**': ['IS_AUTHENTICATED_FULLY'],
    4445    '/plugins/class-diagram-0.3/**': ['IS_AUTHENTICATED_FULLY'],
    4546    '/classDiagram*': ['IS_AUTHENTICATED_FULLY'],
Note: See TracChangeset for help on using the changeset viewer.