Changeset 1313
- Timestamp:
- Dec 22, 2010, 2:08:19 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/controllers/dbnp/importer/ImporterController.groovy
r1311 r1313 42 42 // encrypt the importable entities 43 43 grailsApplication.config.gscf.domain.importableEntities.each { 44 it.value.encrypted = 44 it.value.encrypted = 45 45 Blowfish.encryptBase64( 46 46 it.value.entity.toString().replaceAll(/^class /, ''), … … 300 300 * @return JSON object containing the found templates 301 301 */ 302 def ajaxGetTemplatesByEntity = { 303 def entityName = Blowfish.decryptBase64( 302 def ajaxGetTemplatesByEntity = { 303 def entityName = Blowfish.decryptBase64( 304 304 params.entity, 305 305 grailsApplication.config.crypto.shared.secret
Note: See TracChangeset
for help on using the changeset viewer.