Skip to content

Commit

Permalink
Merge pull request #37 from exhi/develop
Browse files Browse the repository at this point in the history
Grails update
  • Loading branch information
cnrudd authored Jun 7, 2018
2 parents f3ac6ca + 3262eb3 commit 1bb0d76
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
xhReleaseVersion=4.0-SNAPSHOT
grailsVersion=3.3.1
grailsAsyncVersion=3.3.1
gormVersion=6.1.7.RELEASE
grailsVersion=3.3.5
grailsAsyncVersion=3.3.2
gormVersion=6.1.9.RELEASE
gradleWrapperVersion=4.6
2 changes: 1 addition & 1 deletion grails-app/init/io/xh/hoist/BootStrap.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ class BootStrap {
],
xhTheme: [
type: 'string',
defaultValue: 'dark',
defaultValue: 'light',
local: true,
note: 'Visual theme for the client application - "light" or "dark".'
]
Expand Down
10 changes: 7 additions & 3 deletions grails-app/services/io/xh/hoist/track/TrackService.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,13 @@ import static io.xh.hoist.browser.Utils.getBrowser
import static io.xh.hoist.browser.Utils.getDevice

/**
* Primary service for tracking any activity that an application's admins want to track.
* Activities are entered into the db's TrackLog table.
* These are presented to admins in the Admin App's Client Activity > Activity grid.
* Service for tracking user activity within the application. This service provides a server-side
* API for adding track log entries, while the client-side toolkits provide corresponding APIs
* in Javascript. Track log entries are stored within the xh_track_log database table and are
* viewable via the Hoist Admin Console 's Client Activity > Activity grid.
*
* The choice of which activities to track is up to application developers. Typical use-cases
* involve logging queries and tracking if / how often a given feature is actually used.
*/
@CompileStatic
class TrackService extends BaseService implements EventPublisher {
Expand Down

0 comments on commit 1bb0d76

Please sign in to comment.