Last active
October 3, 2017 14:01
-
-
Save mattduggan/4bd0d5fe03ad73bc11b46513c1708085 to your computer and use it in GitHub Desktop.
Feature Tour - Constants
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function() { | |
this.FeatureTourConstants = function() { | |
return { | |
events: { | |
GET_FEATURE_TOURS: "featureTours::getList::loading", | |
GET_FEATURE_TOURS_SUCCESS: "featureTours::getList::success", | |
GET_FEATURE_TOURS_ERROR: "featureTours::getList::error", | |
PUT_FEATURE_TOUR: "featureTours::put::loading", | |
PUT_FEATURE_TOUR_SUCCESS: "featureTours::put::success", | |
PUT_FEATURE_TOUR_ERROR: "featureTours::put::error" | |
}, | |
states: { | |
DISMISSED: "dismissed", | |
FINISHED: "finished", | |
SHOW: "show", | |
SHOW_LATER: "show_later" | |
}, | |
featureTourKeys: {} | |
}; | |
}; | |
}).apply(Yesware); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment