phcdevworks_accounts_auth0 0.5.0 → 0.6.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4400f2eba0013fb52149afa0a94fa243708b81912938f894947fae253699f21b
4
- data.tar.gz: e0979a967b38b0b05a09a34104ff0d0031f1db8576387fa8dbb5754f65b025cb
3
+ metadata.gz: 330728b841f8d36c168b82959b07ab61496f18b58fe84ffcc745ae37207685ea
4
+ data.tar.gz: 33fa99a27bd820a4e35010da44bfc1c1d6cfbcd40660c50108d057528846bd63
5
5
  SHA512:
6
- metadata.gz: cb9e29924d41d0ec5da1495673a6038ecf81a3e142375d192796c783427ea52130ffc21404e14ecf80954d914c35041df0c03ebed9a2161f55c6e931b5eb95ac
7
- data.tar.gz: f22a8220cc123cdb6185d96258363fd172df6286568c03615873372615bb3cdd7c633b36c90c6307c0c83b071d3b307a796d2426e3dd60c35badf2f4fef07f1d
6
+ metadata.gz: 297ef0b8006bbc3ca2489b8552f08ef5505971b8ee179bbcc03f46d7c5c9ef82431e0fc26e742b009d1f8fef1dc2a21bf26fc46ed5deff4d09df053a1ddf69ab
7
+ data.tar.gz: b10458d97f1c5d7840ce8a25db98b05dc580b51637d360593f330c39d2d57370a145938e7673869cecff6aff427cee14689e12cf463a3580a7ba7b66ad3f24fc
@@ -1,6 +1,9 @@
1
1
  module PhcdevworksAccountsAuth0
2
2
  class User::PagesController < ApplicationController
3
3
 
4
+ def dashboard
5
+ end
6
+
4
7
  def profile
5
8
  @user = session[:userinfo]
6
9
  end
data/config/routes.rb CHANGED
@@ -1,8 +1,8 @@
1
1
  PhcdevworksAccountsAuth0::Engine.routes.draw do
2
2
 
3
3
  # User Dashboard
4
- match "user", to: "user/pages#dashboard", via: "get"
5
- match "user/profile", to: "user/pages#profile", via: "get"
4
+ get "dashboard" => 'user/pages#dashboard'
5
+ get "profile" => 'user/pages#profile'
6
6
 
7
7
  # Auth Routes
8
8
  get "/auth/", as: "authentication"
@@ -1,3 +1,3 @@
1
1
  module PhcdevworksAccountsAuth0
2
- VERSION = "0.5.0"
2
+ VERSION = "0.6.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: phcdevworks_accounts_auth0
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - PHCDevworks