Changeset 1331
- Timestamp:
- Jan 5, 2011, 10:55:00 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/controllers/dbnp/importer/ImporterController.groovy
r1324 r1331 43 43 grailsApplication.config.gscf.domain.importableEntities.each { 44 44 it.value.encrypted = 45 Blowfish.encryptBase64(45 URLEncoder.encode(Blowfish.encryptBase64( 46 46 it.value.entity.toString().replaceAll(/^class /, ''), 47 47 grailsApplication.config.crypto.shared.secret 48 ) 48 )) 49 49 } 50 50 … … 303 303 def ajaxGetTemplatesByEntity = { 304 304 def entityName = Blowfish.decryptBase64( 305 params.entity,305 URLDecoder.decode(params.entity), 306 306 grailsApplication.config.crypto.shared.secret 307 307 )
Note: See TracChangeset
for help on using the changeset viewer.