-
Notifications
You must be signed in to change notification settings - Fork 282
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update path_prefix default to match the old default
The old route was /users/auth/:provider and this has changed the default to /user/auth/:provider I believe the default should not break existing apps that were relying on that route Fixes #103
- Loading branch information
Showing
2 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# More on Spree's preference configuration - http://guides.spreecommerce.com/preferences.html#site_wide_preferences | ||
module Spree | ||
class SocialConfiguration < Preferences::Configuration | ||
preference :path_prefix, :string, :default => 'user' | ||
preference :path_prefix, :string, :default => 'users' | ||
end | ||
end | ||
end |