Skip to content

Commit

Permalink
User's widget definitions weren't being synched.
Browse files Browse the repository at this point in the history
Updating hsql for new changes
  • Loading branch information
Steve Sarandos authored and stephanieerin committed Aug 26, 2015
1 parent 00192f8 commit e0d010e
Show file tree
Hide file tree
Showing 3 changed files with 65 additions and 15 deletions.
3 changes: 2 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@
* Code should follow existing code standards i.e. line spacing, indenting, and naming conventions.
* Rebase commits for easier readability for code reviews
* When submitting your pull request, please be detailed in the description. At the minimum the request should contain the following:
* Summary of the changes done (including changes to licenses)
* A detailed description of new features or changes to the codebase (including changes to licenses)
* Screen shots of any new UI features
* Any testing information that's pertinent (browsers, environments, etc.)
* A point of contact for technical discussions
* At the minimum please ensure that your code builds and passes the automated tests. It would be helpful if new features included new tests.
* The better documented your code is, the quicker the Ozone team will be able to process your request. Use javadocs or jsdocs as appropriate at the tops of files, functions, and methods
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,10 @@ class SecurityFilters {
.executeUpdate()
}
session["savedUserGroups"] = true

if (groupsToRemove.size() > 0 || groupsToCreate.size() > 0) {
accountService.sync(personInDB, true)
}
}
catch (Exception e) {
// Chew. We don't want the exception bubbling back.
Expand Down
Loading

0 comments on commit e0d010e

Please sign in to comment.