Changeset 643 for trunk/grails-app


Ignore:
Timestamp:
Jul 2, 2010, 12:45:21 PM (13 years ago)
Author:
jahn
Message:

This setting of searchable features seems not to provoke searchable errors for the time being.

Location:
trunk/grails-app/domain/dbnp
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/grails-app/domain/dbnp/data/Term.groovy

    r640 r643  
    1515 */
    1616class Term implements Serializable {
    17     static searchable = {
    18            [only: ['name']]
    19     }
     17    //static searchable = { [only: ['ontology']] }
    2018
    2119        String name             // BioPortal: label (preferred name)
  • trunk/grails-app/domain/dbnp/studycapturing/Sample.groovy

    r640 r643  
    88 */
    99class Sample extends TemplateEntity {
    10     static searchable = {
    11            [only: ['name']]
    12     }
     10    static searchable = { [only: ['name']] }
    1311 
    1412        Subject parentSubject
  • trunk/grails-app/domain/dbnp/studycapturing/Subject.groovy

    r640 r643  
    1313 */
    1414class Subject extends TemplateEntity implements Serializable {
    15     static searchable = {
    16            [only: ['name']]
    17     }
     15
     16    static searchable = { [only: ['name']] }
    1817        String name
    1918        Term species
Note: See TracChangeset for help on using the changeset viewer.