We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I tried this plugin together with: https://grails.org/plugin/audit-logging
Here is my Class:
@Translatable(with = RoomServiceCategoryTranslation) class RoomServiceCategory { static auditable = [ignore:['version','lastUpdated','createdBy','lastUpdatedBy']] static stampable = true String id Date dateCreated Date lastUpdated String createdBy static constraints = { createdBy nullable: true lastUpdatedBy nullable: true } .... }
When I do:
def myParams = params << [locale: new Locale(params.language)] roomServiceCategory.addToTranslations(myParams) roomServiceCategory.save(flush: true)
I get this:
The field createdBy is not set by the audit log plugin. I guess this might be due to some AST.
createdBy
The text was updated successfully, but these errors were encountered:
Date dateCreated Date lastUpdated String lastUpdatedBy String createdBy static constraints = { lastUpdatedBy nullable: true; createdBy nullable: true; } static auditable = true static stampable = true
Sorry, something went wrong.
No branches or pull requests
I tried this plugin together with: https://grails.org/plugin/audit-logging
Here is my Class:
When I do:
I get this:
The field
createdBy
is not set by the audit log plugin. I guess this might be due to some AST.The text was updated successfully, but these errors were encountered: