From 3d0c61cb981c464321eb9044a43e34218084b412 Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 23 Apr 2020 17:44:36 +0300 Subject: [PATCH] fast fix --- lib/providers/auth_provider.dart | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/lib/providers/auth_provider.dart b/lib/providers/auth_provider.dart index 314dfeb0..4b29cb70 100644 --- a/lib/providers/auth_provider.dart +++ b/lib/providers/auth_provider.dart @@ -1,20 +1,17 @@ import 'dart:convert'; import 'package:doctor_app_flutter/client/app_client.dart'; import 'package:flutter/cupertino.dart'; - -import '../config/config.dart'; -import '../interceptor/http_interceptor.dart'; import '../models/user_model.dart'; const LOGIN_URL = - 'Services/Sentry.svc/REST/MemberLogIN_New'; + 'Sentry.svc/REST/MemberLogIN_New'; const INSERT_DEVICE_IMEI = 'Services/Sentry.svc/REST/DoctorApplication_INSERTDeviceIMEI'; const SELECT_DEVICE_IMEI = - 'Services/Sentry.svc/REST/DoctorApplication_SELECTDeviceIMEIbyIMEI'; + 'Sentry.svc/REST/DoctorApplication_SELECTDeviceIMEIbyIMEI'; const SEND_ACTIVATION_CODE_BY_OTP_NOTIFICATION_TYPE = - 'Services/Sentry.svc/REST/DoctorApplication_SendActivationCodebyOTPNotificationType'; + 'Sentry.svc/REST/DoctorApplication_SendActivationCodebyOTPNotificationType'; const MEMBER_CHECK_ACTIVATION_CODE_NEW ='Services/Sentry.svc/REST/MemberCheckActivationCode_New'; class AuthProvider with ChangeNotifier {