Skip to content

Commit

Permalink
update: do not cache tour list
Browse files Browse the repository at this point in the history
  • Loading branch information
mutantsan committed Apr 29, 2024
1 parent 933fda1 commit 9f963e3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion ckanext/tour/assets/js/tour-init.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ this.ckan.module('tour-init', function (jQuery) {

$.ajax({
url: this.sandbox.url("/api/action/tour_list"),
success: this._onSuccessRequest
cache: false,
success: this._onSuccessRequest,
});
},

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = ckanext-tour
version = 0.1.0
version = 0.1.1
description = Create an interactive tour that will help users familiarize themselves with the important features of your portal
long_description = file: README.md
long_description_content_type = text/markdown
Expand Down

0 comments on commit 9f963e3

Please sign in to comment.