skip to Main Content

Javascript – How to make Parse server login — case insensitive?

I have Parse server with MongoDB and KMP app where login method. @POST("login") @Headers( value = [ "${ParseHeaders.CONTENT_TYPE}: application/json", "${ParseHeaders.APPLICATION_ID}: ${ParseConstants.APPLICATION_ID}", "${ParseHeaders.REST_API_KEY}: ${ParseConstants.REST_API_KEY}", ], ) suspend fun logIn(@Body credentials: ParseLoginCredentials): ParseUserResponse I need to make the username case-insensitive. Currently, usernames…

VIEW QUESTION

Parse, AsyncStorage and React Native

Trying to work out using Parse with React Native and using Back4App as my BaaS. Running into a problem when setting up my asyncstorage (from react native). Parse.setAsyncStorage(AsyncStorage); //Paste below the Back4App Application ID AND the JavaScript KEY Parse.initialize('myappid', 'sdk');…

VIEW QUESTION

Docker-Compose Parse Dashboard

I am trying to run parse dashboard via the following docker-compose.yml: version: '3' services: mongo: image: mongo ports: - 27017:27017 volumes: - ./data-db:/data/db parse: image: parseplatform/parse-server ports: - 1337:1337 links: - mongo environment: - PARSE_SERVER_APPLICATION_ID=yourappid - PARSE_SERVER_MASTER_KEY=yourmasterkey - PARSE_SERVER_DATABASE_URI=mongodb://mongo:27017/dev -…

VIEW QUESTION
Back To Top
Search