Skip to content
New issue

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

Add testcases for store/flow_store.go #436

Merged
merged 18 commits into from
Mar 3, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
74ddac8
[MM-844]: Added server testcase for store/welcome_store.go
Kshitij-Katiyar Oct 8, 2024
a8a3473
[MM-844]: Updated the go.sum
Kshitij-Katiyar Oct 8, 2024
1f32a06
[MM-844]: Moved clearing of expected mock calls to loop
Kshitij-Katiyar Oct 14, 2024
3a2b112
[MM-843]: Added server testcase for kvstore/plugin_store.go file (#18)
Kshitij-Katiyar Oct 14, 2024
6870d49
Merge branch 'master' of github.com:mattermost/mattermost-plugin-msca…
Kshitij-Katiyar Oct 14, 2024
75f6ceb
updated go.mod and go.sum entries
Kshitij-Katiyar Oct 14, 2024
65d7b43
refactored mock plugin setup
Kshitij-Katiyar Oct 14, 2024
3a2e04e
Merge branch 'add_plugin_store.go_testcase' of github.com:Brightscout…
Kshitij-Katiyar Oct 14, 2024
e8015e3
[MM-844]: refactored the code
Kshitij-Katiyar Oct 21, 2024
c453429
Merge branch 'master' of github.com:mattermost/mattermost-plugin-msca…
Kshitij-Katiyar Oct 28, 2024
96d0b6f
[MM-844]: Fixed the go sum
Kshitij-Katiyar Nov 6, 2024
b489232
[MM-845]: Added server testcases for store/user_store.go
Kshitij-Katiyar Nov 18, 2024
f3cda2e
Added server testcases for store/subscription_store.go
Kshitij-Katiyar Nov 18, 2024
2a8a938
Added server testcases for store/oauth2_store.go
Kshitij-Katiyar Nov 18, 2024
a31e59c
Add server testcases for store/setting_store.go
Kshitij-Katiyar Nov 18, 2024
f2fc50e
Add testcases for store/flow_store.go
Kshitij-Katiyar Nov 18, 2024
2fc1d42
Merge branch 'master' of github.com:mattermost/mattermost-plugin-msca…
Kshitij-Katiyar Mar 3, 2025
0561802
Fixed licnese
Kshitij-Katiyar Mar 3, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions calendar/store/flow_store.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ func (s *pluginStore) GetCurrentStep(userID string) (int, error) {

return user.WelcomeFlowStatus.Step, nil
}

func (s *pluginStore) SetCurrentStep(userID string, step int) error {
user, err := s.LoadUser(userID)
if err != nil {
Expand Down
Loading