Created
December 10, 2012 23:08
-
-
Save kerinin/4254207 to your computer and use it in GitHub Desktop.
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
context "current user exists, user is not currently using this application" do | |
# Redirects to Application > Email Addresses, prompts to activate application | |
end | |
context "current user exists, user is currently using this application" do | |
# Redirects to Application > (root) | |
end | |
context "no current user, EEA doesn't exist (8L)" do | |
# Redirects to account_to_found | |
end | |
context "no current user, EEA exists, EEA doesn't use any applications, EEA has never used this application (11L)" do | |
# Redirects to Application > Email Addresses, prompts to activate application for EEA | |
end | |
context "no current user, EEA exists, EEA doesn't use any applications, EEA has used this application (10L)" do | |
# Redirects to Application > Email Addresses, prompts to reactivate application for EEA | |
end | |
context "no current user, EEA exists, EEA uses an application, EEA has never used this application(9L)" do | |
# Redirects to Application > Email Addresses, prompts to activate application for EEA | |
end | |
context "no current user, EEA exists, EEA uses an application, EEA has used this application, EEA is not currently using this application (13L)" do | |
# Redirects to Application > Email Addresses, prompts to activate application for EEA | |
end | |
context "no current user, EEA exists, EEA uses an application, EEA has used this application, EEA is currently using this application (12L)" do | |
# Redirects to Application > (root) | |
end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
As far as I can tell we're not deleting credentials during deactivation, but I could be missing it