simple_jwt_auth 0.1.4 → 0.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1c6053fd30a7009d6dfd60acf15685ce90dfa7d71e7461516d73962a115607a8
4
- data.tar.gz: f8ce064539c2c1419e015a2d18cf0117045046a02bc0877ef4f7de24a7986db6
3
+ metadata.gz: ef5e600d8bca44e3a6951dcbb9dfe0a2497b757eb311fc52e287629eb2c4a931
4
+ data.tar.gz: 547a3a937faa8cae04af5728e670fe1e375eb2a06aa288897067f70af3cb9d06
5
5
  SHA512:
6
- metadata.gz: 01b7ca7686a3c758ce56d29483810aaae5d0b5ddc6c17918eda5c523b85d5d554d017a9cee4f1b43765f5ddae5a5c9d2fa9af1bb920f9228e73a529fe1d1e7de
7
- data.tar.gz: 010b968f1b46d55c57c61eec852f0264a022468894afff557ce81bca370b2df6f4ffe546707e18ec920a6f9626c950108ef7973f51d180145cb1b7965035ce71
6
+ metadata.gz: a204552f9c1742a47c0277d2f9ecbe00fba8289842da4895a20f695ae1c4d24de0d00f9e242c7ab124d7c03d292afcd5a21d651a2be543d79290c8b895eeef8f
7
+ data.tar.gz: 6be0c2c6eef0095eb6ce49aaf9c7cd685b1be0b69c5a59e5e72d27f920084eeadd4355551c804e06b686cf2cc41a88290034f876cacf09e20f5b78dd43cbc12e
@@ -12,7 +12,7 @@ class SessionsController < ApplicationController
12
12
  Rails.application.credentials.fetch(:secret_key_base), # the secret key
13
13
  "HS256" # the encryption algorithm
14
14
  )
15
- render json: { jwt: jwt, email: user.email, user_id: user.id }, status: :created
15
+ render json: { jwt: jwt, email: user.email, user_id: user.id, isPasswordReset: user.isPasswordReset }, status: :created
16
16
  else
17
17
  render json: {}, status: :unauthorized
18
18
  end
@@ -17,9 +17,29 @@ class UsersController < ApplicationController
17
17
  end
18
18
  end
19
19
 
20
+ def update
21
+ if current_user
22
+ user = User.find_by_id(current_user.id)
23
+ user.isPasswordReset = true
24
+ user.update(update_params)
25
+
26
+ if user.save
27
+ render json: {message: "User updated successfully"}, status: :ok
28
+ else
29
+ render json: {errors: user.errors.full_messages}, status: :bad_request
30
+ end
31
+ else
32
+ render json: {}, status: :unauthorized
33
+ end
34
+ end
35
+
20
36
  private
21
37
 
22
38
  def user_params
23
39
  params.permit(:name, :email, :password, :password_confirmation)
24
- end
40
+ end
41
+
42
+ def update_params
43
+ params.permit(:password, :password_confirmation)
44
+ end
25
45
  end
data/config/routes.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  Rails.application.routes.draw do
2
2
  scope :auth do
3
3
  resources :users, only: [:create]
4
- resource :user, only: [:show]
4
+ resource :user, only: [:show, :update]
5
5
  resources :sessions, only: [:create]
6
6
  end
7
7
  end
@@ -4,6 +4,7 @@ class CreateUsers < ActiveRecord::Migration[6.0]
4
4
  t.string :name
5
5
  t.string :email
6
6
  t.string :password_digest
7
+ t.boolean :isPasswordReset, default: false
7
8
 
8
9
  t.timestamps
9
10
  end
@@ -1,3 +1,3 @@
1
1
  module SimpleJwtAuth
2
- VERSION = '0.1.4'
2
+ VERSION = '0.1.5'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simple_jwt_auth
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - brye
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-04-16 00:00:00.000000000 Z
11
+ date: 2021-08-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -109,7 +109,7 @@ homepage: https://github.com/bryewalks/simple_auth
109
109
  licenses:
110
110
  - MIT
111
111
  metadata: {}
112
- post_install_message:
112
+ post_install_message:
113
113
  rdoc_options: []
114
114
  require_paths:
115
115
  - lib
@@ -125,7 +125,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
125
125
  version: '0'
126
126
  requirements: []
127
127
  rubygems_version: 3.0.6
128
- signing_key:
128
+ signing_key:
129
129
  specification_version: 4
130
130
  summary: JWT based authorization
131
131
  test_files: []