Skip to content

Commit

Permalink
Review changes
Browse files Browse the repository at this point in the history
  • Loading branch information
YaswanthNagarjuna committed Sep 21, 2023
1 parent a31fab4 commit 93e1bb2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 93 deletions.
1 change: 0 additions & 1 deletion mock-relying-party-ui-telecom/src/logo.svg

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -32,99 +32,8 @@ const post_fetchUserInfo = async (
});
return response.data;
};
const get_claimProvider = () => {
return {
claimproviders: [
{
vaccinationName: "covaxin",
days: 7,
vaccinationCenter: "aiims_address",
totalCost: "$234",
},
{
vaccinationName: "hepatitis_a.",
days: 40,
vaccinationCenter: "apollo_address",
totalCost: "$85",
},
{
vaccinationName: "rubella",
days: 295,
vaccinationCenter: "urban_address",
totalCost: "$55",
},
{
vaccinationName: "influenza",
days: 390,
vaccinationCenter: "manipal_address",
totalCost: "$75",
},
],
};
};
const get_currentMedications = () => {
return {
medications: [
{
tabletName: "acebutolol_400mg",
dailyDosage: "dailydosage_2",
},
{
tabletName: "aluminium_hydroxide_(otc)_320mg",
dailyDosage: "dailydosage_2",
},
{
tabletName: "warfarin_2mg",
dailyDosage: "dailydoseage_1",
},
],
};
};
const get_messages = () => {
return {
messages: [
{
doctorName: "dr_alexander_kalish",
days: "1",
message: "dr_alexander_kalish_message_1",
},
{
doctorName: "dr_alexander_kalish",
days: "3",
message:
"dr_alexander_kalish_message_2",
},
{
doctorName: "samantha_kleizar",
days: "4",
message:
"samantha_kleizar_message_1",
},
{
doctorName: "dr_fariz",
days: "5",
message: "dr_fariz_message_1",
},
],
};
};
const get_nextAppointment = () => {
return {
appointment: [
{
time: "10:30am - 11:00am 30mins",
location: "appointment_location",
doctorName: "dr_alexander_kalish",
department: "endocrin",
},
],
};
};

const relyingPartyService = {
post_fetchUserInfo,
get_claimProvider,
get_currentMedications,
get_messages,
get_nextAppointment,
};
export default relyingPartyService;

0 comments on commit 93e1bb2

Please sign in to comment.