mirror of
https://github.com/mosip/inji-wallet.git
synced 2026-01-09 21:48:04 -05:00
Add CSS Themes and Download vc using AID/RID
This commit is contained in:
@@ -1,9 +1,6 @@
|
||||
import { VC } from '../types/vc';
|
||||
import Constants from 'expo-constants';
|
||||
|
||||
export const HOST =
|
||||
Constants.manifest.extra.backendServiceUrl ||
|
||||
'https://resident-app.newlogic.dev';
|
||||
export const HOST = 'https://api-internal.dev3.mosip.net/resident/v1/';
|
||||
|
||||
export const MY_VCS_STORE_KEY = 'myVCs';
|
||||
|
||||
@@ -12,6 +9,12 @@ export const RECEIVED_VCS_STORE_KEY = 'receivedVCs';
|
||||
export const VC_ITEM_STORE_KEY = (vc: Partial<VC>) =>
|
||||
`vc:${vc.idType}:${vc.id}:${vc.requestId}`;
|
||||
|
||||
export let individualId = '';
|
||||
|
||||
export const GET_INDIVIDUAL_ID = (ind_Id: string) => {
|
||||
individualId = ind_Id;
|
||||
};
|
||||
|
||||
export const ACTIVITY_LOG_STORE_KEY = 'activityLog';
|
||||
|
||||
export const SETTINGS_STORE_KEY = 'settings';
|
||||
|
||||
Reference in New Issue
Block a user