Steven Chan

Results 15 issues of Steven Chan

Affected attributes: - `last_seen_at` - `last_login_at` - `disabled` - `disabled_message` - `disabled_expiry` - `verified` (not implemented yet, #781) - `xxx_verified` (not implemented yet, #781) If record gear is enabled, these...

non-auth-features/core

The following is the suggested usage of migration cli in readme. ``` $ go run cmd/migrate/main.go -module ${GEAR} -schema app_${APPNAME} version ``` However, for gateway migration, the schema is hardcoded...

non-auth-features/core

See: https://stackoverflow.com/questions/20234104/how-to-format-current-time-using-a-yyyymmddhhmmss-format

non-auth-features/core

proposal: (change) `/record/schema/access` -> `/record/creation_access/update` `(not existed yet)` -> `/record/creation_access/get` `/record/schema/default_access` -> `/record/default_access/update` `(not existed yet)` ->`/record/default_access/get` `/record/schema/field_access/get` -> `/record/field_access/get` `/record/schema/field_access/update` -> `/record/field_access/update` (no change) `/record/schema/rename` `/record/schema/delete` `/record/schema/create` `/record/schema/fetch` `/record/fetch`...

Since a lot of code are moved from skygear-server and not fully refactored, there are a lot of lint error. We should deal with this after record gear code is...

non-auth-features/record

Since #605, we added support for `recordType` and `recordID`, which tries to replace `type/id`. Currently both SDKs and skygear-server (de-)serialise reference with backward compatibility. However, when calling skygear-server api without...

Currently the design is to let developers extend ReduxActionType and store the payload directly in enum param. But due to Swift type system, String comparison is far easier when composing...