morpho 1.0.0 → 1.0.1
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 +4 -4
- data/app/api/morpho/entities/external.rb +0 -1
- data/lib/morpho/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3536e547cc737f7badcac9844606c355f2fd28a60e26cc7c5cbc877e269e4bb8
|
4
|
+
data.tar.gz: 524baa415ee30782dc65cb722683688bf3ee931be52394a1ca80f7c3dd40ae87
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 02431c3b8fa188adbbd2efa4335375fa4754ff829eff1525a8e94a631ccd9f7c6075e11dcfd6aa29fee6e6eb846cdb195595debfe6328e076ad2358e28cfc686
|
7
|
+
data.tar.gz: e01fc5410f8d5e0f291378db7ce32dcc72664e988a77f6368219a9bdc645b367e1366af042f5499a981f955d7faf19c14d002a113a3e06a1153d782531e4c497
|
@@ -2,7 +2,6 @@ module Morpho
|
|
2
2
|
module Entities
|
3
3
|
class External < ::Morpho::Entities::Base
|
4
4
|
expose :email, documentation: { type: 'string', desc: 'User email address' }
|
5
|
-
expose :name, documentation: { type: 'string', desc: 'User name' }
|
6
5
|
expose :provider, documentation: { type: 'string', desc: 'User authentication provider' }
|
7
6
|
expose :uid, documentation: { type: 'string', desc: 'User provider uid' }
|
8
7
|
end
|
data/lib/morpho/version.rb
CHANGED