Skip to content

Instantly share code, notes, and snippets.

@kerinin
Created December 10, 2012 23:08
Show Gist options
  • Save kerinin/4254207 to your computer and use it in GitHub Desktop.
Save kerinin/4254207 to your computer and use it in GitHub Desktop.
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
@kerinin
Copy link
Author

kerinin commented Dec 10, 2012

(my preference would be not retain credentials forever and just stop syncing accounts when users click 'Remove')

@kerinin
Copy link
Author

kerinin commented Dec 10, 2012

As far as I can tell we're not deleting credentials during deactivation, but I could be missing it

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment