Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MOSIP-31687 #292

Merged
merged 11 commits into from
Mar 14, 2024
Merged

MOSIP-31687 #292

merged 11 commits into from
Mar 14, 2024

Conversation

jayesh12234
Copy link
Contributor

No description provided.

Jayesh Kharode added 5 commits March 4, 2024 13:19
Signed-off-by: Jayesh Kharode <[email protected]>
Signed-off-by: Jayesh Kharode <[email protected]>
Signed-off-by: Jayesh Kharode <[email protected]>
Signed-off-by: Jayesh Kharode <[email protected]>
Signed-off-by: Jayesh Kharode <[email protected]>
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>inji</groupId>
<artifactId>injitest</artifactId>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

remove inji test

<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/dependency-jars/</outputDirectory>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

remove unwanted dependences from pom.xml

return appiumDriver.get();
}

private static AppiumDriver getIosDriver(Boolean isDeviceFarmRun) {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

since we are using only android driver remove the code related to iOS

super(driver);
}

public boolean isAddressAndContactPageTitleDisplay() {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

isAddressAndContactPageTitleDisplay >> isAddressAndContactPageTitleDisplayed

return element.getText();
}

protected String retrieToGetElement(WebElement element) {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

remove all unused methods


public IdentityProofPage clickimage() {
clickOnElement(clickImageButton);
clickOnElement(okButton);

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

use two separate methods

}

public boolean isConsentpageDisplay() {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

remove space

public class ConsentPage extends BasePage{

@AndroidFindBy(accessibility = "Consent")
private WebElement consentpage;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

consentpage >> consentPage

private WebElement checkBox;

@AndroidFindBy(accessibility = "INFORMED")
private WebElement informed;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

informed >> informedButton

private WebElement consentpage;

@AndroidFindBy(uiAutomator = "new UiScrollable(new UiSelector().scrollable(true).instance(0)).scrollIntoView(new UiSelector().className(\"android.widget.CheckBox\"))")
private WebElement checkBox;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

checkBox >> termAndConditionCheckBox

return isElementDisplayed(consentpage);
}

public void clickOnCheckBoxButton() {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

clickOnCheckBoxButton >> selectTermAndConditionCheckbox

public class DemographicPage extends BasePage{

@AndroidFindBy(accessibility = "Demographic Details")
private WebElement demographicdetails;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

demographicdetails >> demographicDetails

private WebElement firstNameTextBox;

@AndroidFindBy(uiAutomator = "UiSelector().className(\"android.widget.EditText\").instance(1)")
private WebElement firstNameTextBoxSecondlang;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

firstNameTextBoxSecondlang >> firstNameTextBoxSecondLanguage

private WebElement firstNameTextBoxSecondlang;

@AndroidFindBy(uiAutomator = "UiSelector().className(\"android.widget.EditText\").instance(2)")
private WebElement lasttNameTextBox;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lasttNameTextBox >> lastNameTextBox

private WebElement lasttNameTextBox;

@AndroidFindBy(uiAutomator = "UiSelector().className(\"android.widget.EditText\").instance(3)")
private WebElement lastNameTextBoxSecondLang;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lastNameTextBoxSecondLang >> lastNameTextBoxSecondLanguage

private WebElement ageTextBox;

@AndroidFindBy(accessibility = "Male")
private WebElement male;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

male >> maleButton

private WebElement male;

@AndroidFindBy(accessibility = "Female")
private WebElement female;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

female >> femaleButton

private WebElement selectMaritalStatus;

@AndroidFindBy(accessibility = "Single")
private WebElement single;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

single >> singleValueFromDropdown

private WebElement single;

@AndroidFindBy(accessibility = "CONTINUE")
private WebElement continuebutton;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

continuebutton >> continueButton


public DemographicPage(AppiumDriver driver) {
super(driver);
// TODO Auto-generated constructor stub

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remove unwanted comments

}

public boolean isDemographicDetailsPageDisplay() {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

remove space

clickAndsendKeysToTextBox(ageTextBox,age);
}

public boolean getenterfirstNameTextBoxSecondlang() {
Copy link

@kamalsinghthoughtworks kamalsinghthoughtworks Mar 5, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

getenterfirstNameTextBoxSecondlang >> checkFirstNameSecondLanguageTextBoxNotNull

}

public boolean getenterfirstNameTextBoxSecondlang() {
if(getTextFromLocator(firstNameTextBoxSecondlang)==null)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

check null or empty both

}

public boolean getenterLastNameTextBoxSecondlang() {
if(getTextFromLocator(lastNameTextBoxSecondLang)==null)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lastNameTextBoxSecondLang >> checkLastNameSecondLanguageTextBoxNotNull

private WebElement welcome;

@AndroidFindBy(accessibility = "HELP")
private WebElement help;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

help >> helpButton

private WebElement help;

@AndroidFindBy(accessibility = "BACK")
private WebElement back;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

back >> backButton

private WebElement back;

@AndroidFindBy(accessibility = "Forgot Password?")
private WebElement forgetPassword;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

forgetPassword >> forgetPasswordButton

private WebElement forgetPassword;

@AndroidFindBy(accessibility = "User not found!")
private WebElement userNotFoundErrorMsg;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

userNotFoundErrorMsg >> userNotFoundErrorMessage

private WebElement userNotFoundErrorMsg;

@AndroidFindBy(accessibility = "Password incorrect!")
private WebElement passwordIncorrectErrorMsg;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

passwordIncorrectErrorMsg >> passwordIncorrectErrorMessage

private WebElement passwordIncorrectErrorMsg;

@AndroidFindBy(accessibility = "English")
private WebElement english;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

english >> englishButton

change below as well.

}


public void enterusername(String username) {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

enterusername >> enterUserName

clickOnElement(back);
}

public void enterpassword(String password) {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

enterpassword >> enterPassword

return new RegistrationTasksPage(driver);
}

public boolean isNextButtonEnable() {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

isNextButtonEnable >> isNextButtonEnabled

}

public void selectLanguage(String language) {
if(language.equalsIgnoreCase("eng"))

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Change to switch case

}
}

public static void enableAirplaneMode() {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

remove all unwanted methods

@@ -0,0 +1,26 @@
{

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

remove this file

@@ -0,0 +1,23 @@
package BaseTest;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

remove UIN generation code

Signed-off-by: Jayesh Kharode <[email protected]>
Signed-off-by: Jayesh Kharode <[email protected]>
Signed-off-by: Jayesh Kharode <[email protected]>
Signed-off-by: Jayesh Kharode <[email protected]>
@jainhitesh9998 jainhitesh9998 merged commit dfba819 into mosip:develop Mar 14, 2024
1 check passed
aviralmishra3 pushed a commit to Infosys/android-registration-client that referenced this pull request Mar 28, 2024
* MOSIP-31687

Signed-off-by: Jayesh Kharode <[email protected]>

* MOSIP-31687

Signed-off-by: Jayesh Kharode <[email protected]>

* MOSIP-31687

Signed-off-by: Jayesh Kharode <[email protected]>

* MOSIP-31687

Signed-off-by: Jayesh Kharode <[email protected]>

* MOSIP-31687

Signed-off-by: Jayesh Kharode <[email protected]>

* MOSIP-31687

Signed-off-by: Jayesh Kharode <[email protected]>

* MOSIP-31687

Signed-off-by: Jayesh Kharode <[email protected]>

* MOSIP-31687

Signed-off-by: Jayesh Kharode <[email protected]>

* MOSIP-31687

Signed-off-by: Jayesh Kharode <[email protected]>

* Delete androidReg-clientTest/.classpath

Signed-off-by: jayesh12234 <[email protected]>

* Delete androidReg-clientTest/.metadata directory

Signed-off-by: jayesh12234 <[email protected]>

---------

Signed-off-by: Jayesh Kharode <[email protected]>
Signed-off-by: jayesh12234 <[email protected]>
Co-authored-by: Jayesh Kharode <[email protected]>
Signed-off-by: Aviral Mishra <[email protected]>
Piyush7034 pushed a commit to Infosys/android-registration-client that referenced this pull request Mar 28, 2024
* MOSIP-31687

Signed-off-by: Jayesh Kharode <[email protected]>

* MOSIP-31687

Signed-off-by: Jayesh Kharode <[email protected]>

* MOSIP-31687

Signed-off-by: Jayesh Kharode <[email protected]>

* MOSIP-31687

Signed-off-by: Jayesh Kharode <[email protected]>

* MOSIP-31687

Signed-off-by: Jayesh Kharode <[email protected]>

* MOSIP-31687

Signed-off-by: Jayesh Kharode <[email protected]>

* MOSIP-31687

Signed-off-by: Jayesh Kharode <[email protected]>

* MOSIP-31687

Signed-off-by: Jayesh Kharode <[email protected]>

* MOSIP-31687

Signed-off-by: Jayesh Kharode <[email protected]>

* Delete androidReg-clientTest/.classpath

Signed-off-by: jayesh12234 <[email protected]>

* Delete androidReg-clientTest/.metadata directory

Signed-off-by: jayesh12234 <[email protected]>

---------

Signed-off-by: Jayesh Kharode <[email protected]>
Signed-off-by: jayesh12234 <[email protected]>
Co-authored-by: Jayesh Kharode <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>
Piyush7034 pushed a commit to Infosys/android-registration-client that referenced this pull request Mar 28, 2024
* MOSIP-31687

Signed-off-by: Jayesh Kharode <[email protected]>

* MOSIP-31687

Signed-off-by: Jayesh Kharode <[email protected]>

* MOSIP-31687

Signed-off-by: Jayesh Kharode <[email protected]>

* MOSIP-31687

Signed-off-by: Jayesh Kharode <[email protected]>

* MOSIP-31687

Signed-off-by: Jayesh Kharode <[email protected]>

* MOSIP-31687

Signed-off-by: Jayesh Kharode <[email protected]>

* MOSIP-31687

Signed-off-by: Jayesh Kharode <[email protected]>

* MOSIP-31687

Signed-off-by: Jayesh Kharode <[email protected]>

* MOSIP-31687

Signed-off-by: Jayesh Kharode <[email protected]>

* Delete androidReg-clientTest/.classpath

Signed-off-by: jayesh12234 <[email protected]>

* Delete androidReg-clientTest/.metadata directory

Signed-off-by: jayesh12234 <[email protected]>

---------

Signed-off-by: Jayesh Kharode <[email protected]>
Signed-off-by: jayesh12234 <[email protected]>
Co-authored-by: Jayesh Kharode <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>
jainhitesh9998 pushed a commit that referenced this pull request Apr 10, 2024
* Fixed
Changed fetch commit id

Signed-off-by: Piyush7034 <[email protected]>

* Fixed
Added try catch for fetching commit ids

Signed-off-by: Piyush7034 <[email protected]>

* Fixed
Added the qr code template changes to the acknowledgement template

Signed-off-by: G S Prakash <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>

* RCF-414 (#247)

* Changed fetch commit id

Signed-off-by: Piyush7034 <[email protected]>

* Added try catch for fetching commit ids

Signed-off-by: Piyush7034 <[email protected]>

* Added the qr code template changes to the acknowledgement template

Signed-off-by: G S Prakash <[email protected]>

* Updated the util configuration in the app

Signed-off-by: G S Prakash <[email protected]>

---------

Signed-off-by: Piyush7034 <[email protected]>
Signed-off-by: G S Prakash <[email protected]>
Co-authored-by: Piyush7034 <[email protected]>
Co-authored-by: GSPrakashNaiduCyberpwn <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>

* Values for all selected langauges added to dto (#248)

Signed-off-by: Piyush7034 <[email protected]>

* Rcf 403 - batch job sync before upload (#246)

* transliteration fixes

Signed-off-by: Aditya Singh(aditya.singh509) <[email protected]>

* batch job sync before upload

Signed-off-by: Aditya Singh(aditya.singh509) <[email protected]>

* transliteration from any-any lang

Signed-off-by: Aditya Singh(aditya.singh509) <[email protected]>

---------

Signed-off-by: Aditya Singh(aditya.singh509) <[email protected]>
Co-authored-by: Aditya Singh(aditya.singh509) <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>

* QA platform (#249)

* Values for all selected langauges added to dto

Signed-off-by: Piyush7034 <[email protected]>

* change env to qa-platform

Signed-off-by: Aditya Singh(aditya.singh509) <[email protected]>

---------

Signed-off-by: Piyush7034 <[email protected]>
Signed-off-by: Aditya Singh(aditya.singh509) <[email protected]>
Co-authored-by: Piyush7034 <[email protected]>
Co-authored-by: Aditya Singh(aditya.singh509) <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>

* Minor bugs (#252)

* batch job & error message fix

Signed-off-by: Aditya Singh(aditya.singh509) <[email protected]>

* french transliteration & gender control bug fix

Signed-off-by: Aditya Singh(aditya.singh509) <[email protected]>

---------

Signed-off-by: Aditya Singh(aditya.singh509) <[email protected]>
Co-authored-by: Aditya Singh(aditya.singh509) <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>

* Rcf 358 (#250)

* RCF-377 fixed

Signed-off-by: aviral-mishra-hunter <[email protected]>

* Overflow Fix

Signed-off-by: aviral-mishra-hunter <[email protected]>

* Disabled language whose localization file is not available

Signed-off-by: Piyush7034 <[email protected]>

* Small fix

Signed-off-by: Piyush7034 <[email protected]>

* Added locale codes in a constants file

Signed-off-by: Piyush7034 <[email protected]>

* Fixed packet auth page ui

Signed-off-by: Piyush7034 <[email protected]>

* Added more locales to constants

Signed-off-by: Piyush7034 <[email protected]>

* Some changes in auto sync

Signed-off-by: Piyush7034 <[email protected]>

* Fixed auto sync issue

Signed-off-by: Piyush7034 <[email protected]>

* Some changes in save version

Signed-off-by: Piyush7034 <[email protected]>

* Changed save all headers

Signed-off-by: Piyush7034 <[email protected]>

* changed qa-trinity to qa-platform

Signed-off-by: Piyush7034 <[email protected]>

---------

Signed-off-by: aviral-mishra-hunter <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>
Co-authored-by: aviral-mishra-hunter <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>

* Rcf 415 (#253)

* Changed app langauge to be same as mandatory language

Signed-off-by: Piyush7034 <[email protected]>

* Mandatory language as first language in the list

Signed-off-by: Piyush7034 <[email protected]>

---------

Signed-off-by: Piyush7034 <[email protected]>

* [RCF-407] , [RCF-423] , [RCF-420] (#254)

* RCF-407 Resolved

Signed-off-by: Aviral Mishra <[email protected]>

* Initial Commits

Signed-off-by: Aviral Mishra <[email protected]>

* RCF-420 Fixed

Signed-off-by: Aviral Mishra <[email protected]>

* [RCF-407] , [RCF-423] , [RCF-420]

Signed-off-by: Aviral Mishra <[email protected]>

* Some additional changes

Signed-off-by: Aviral Mishra <[email protected]>

---------

Signed-off-by: Aviral Mishra <[email protected]>
Co-authored-by: Aviral Mishra <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>

* RCF-411 (#251)

* removed reference id text field mandatory option

Signed-off-by: Sachin S P <[email protected]>

* fixed the alignment issue

Signed-off-by: Sachin S P <[email protected]>

---------

Signed-off-by: Sachin S P <[email protected]>
Co-authored-by: Sachin S P <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>

* Final changes (#255)

* Final Changes

Signed-off-by: Aviral Mishra <[email protected]>

* UI Changes

Signed-off-by: Aviral Mishra <[email protected]>

---------

Signed-off-by: Aviral Mishra <[email protected]>
Co-authored-by: Aviral Mishra <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>

* Changed MPL license to MIT license (#256)

Signed-off-by: Piyush7034 <[email protected]>

* audit added before batch job (#257)

Signed-off-by: Aditya Singh(aditya.singh509) <[email protected]>
Co-authored-by: Aditya Singh(aditya.singh509) <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>

* Updated the string of Sync Packet

Signed-off-by: G S Prakash <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>

* Overflow Fix

Signed-off-by: Aviral Mishra <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>

* RCF-435

Signed-off-by: Aviral Mishra <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>

* Minor Change

Signed-off-by: Aviral Mishra <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>

* RCF-451 Fixed

Signed-off-by: Aviral Mishra <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>

* Radio Button Fix for Synergy Env

Signed-off-by: Aviral Mishra <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>

* text alignment for arabic

Signed-off-by: Aditya Singh <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>

* dynamic alignment of lang text

Signed-off-by: Aditya Singh <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>

* fixed retrigger multiple time at the T-0 minute

Signed-off-by: Aditya Singh <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>

* minor changes

Signed-off-by: Aditya Singh <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>

* default cron expression added

Signed-off-by: Aditya Singh <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>

* added to constant

Signed-off-by: Aditya Singh <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>

* RCF-214, RCF-212 and RCF-216 (#261)

* added mavel native code

Signed-off-by: Sachin S P <[email protected]>

* changed the new code error

Signed-off-by: Sachin S P <[email protected]>

* fixed the ui break issue

Signed-off-by: Sachin S P <[email protected]>

* document upload screen based on mavel script and application doc type

Signed-off-by: Sachin S P <[email protected]>

* document upload screen validation

Signed-off-by: Sachin S P <[email protected]>

* document upload screen exception proof function

Signed-off-by: Sachin S P <[email protected]>

* exception proof validation

Signed-off-by: Sachin S P <[email protected]>

* made some merge changes

Signed-off-by: Sachin S P <[email protected]>

---------

Signed-off-by: Sachin S P <[email protected]>
Co-authored-by: Sachin S P <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>

* script added in pigeon.sh (#269)

Signed-off-by: Sachin S P <[email protected]>
Co-authored-by: Sachin S P <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>

* Revert RCF 216 (#275)

* reverted code

Signed-off-by: Sachin S P <[email protected]>

* reverted code

Signed-off-by: Sachin S P <[email protected]>

---------

Signed-off-by: Sachin S P <[email protected]>
Co-authored-by: Sachin S P <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>

* RCF-460: Fixed cacerts sync issue (#271)

Signed-off-by: HimajaDhanyamraju2 <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>

* Functions added in User Onboard Service from Registrarion Client User Onboard Service Impl

Signed-off-by: Aviral Mishra <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>

* RCF-35: Added service classes for onboarding

Signed-off-by: HimajaDhanyamraju2 <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>

* Initial Commit

Signed-off-by: Aviral Mishra <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>

* First view Added

Signed-off-by: Aviral Mishra <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>

* Saving data

Signed-off-by: Aviral Mishra <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>

* UI Complete for Onboarding Operator

Signed-off-by: Aviral Mishra <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>

* Operation Biometric Capture Backend Complete

Signed-off-by: Aviral Mishra <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>

* fixed
Save Operator Biometrics in progress

Signed-off-by: Aviral Mishra <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>

* Operator Biometrics Saving In progress

Signed-off-by: Aviral Mishra <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>

* Threshold added for operator biometrics

Signed-off-by: Aviral Mishra <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>

* fixed
RCF-35: User onboarding changes

Signed-off-by: HimajaDhanyamraju2 <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>

* RCF-35: Fix in saving biometrics to DB

Signed-off-by: HimajaDhanyamraju2 <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>

* Fixed
Added fix for operator onboard saving

Signed-off-by: Piyush7034 <[email protected]>

* RCF-399 Resolved (#283)

Signed-off-by: Aviral Mishra <[email protected]>
Co-authored-by: Aviral Mishra <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>

* Android14 patch (#282)

* android 14 alarm permission request added

Signed-off-by: Aditya Singh <[email protected]>

* patch-fixes changes added

Signed-off-by: Aditya Singh <[email protected]>

---------

Signed-off-by: Aditya Singh <[email protected]>
Co-authored-by: Aditya Singh <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>

* MOSIP-31687 (#292)

* MOSIP-31687

Signed-off-by: Jayesh Kharode <[email protected]>

* MOSIP-31687

Signed-off-by: Jayesh Kharode <[email protected]>

* MOSIP-31687

Signed-off-by: Jayesh Kharode <[email protected]>

* MOSIP-31687

Signed-off-by: Jayesh Kharode <[email protected]>

* MOSIP-31687

Signed-off-by: Jayesh Kharode <[email protected]>

* MOSIP-31687

Signed-off-by: Jayesh Kharode <[email protected]>

* MOSIP-31687

Signed-off-by: Jayesh Kharode <[email protected]>

* MOSIP-31687

Signed-off-by: Jayesh Kharode <[email protected]>

* MOSIP-31687

Signed-off-by: Jayesh Kharode <[email protected]>

* Delete androidReg-clientTest/.classpath

Signed-off-by: jayesh12234 <[email protected]>

* Delete androidReg-clientTest/.metadata directory

Signed-off-by: jayesh12234 <[email protected]>

---------

Signed-off-by: Jayesh Kharode <[email protected]>
Signed-off-by: jayesh12234 <[email protected]>
Co-authored-by: Jayesh Kharode <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>

* Added null check conditions (#289)

Signed-off-by: Piyush7034 <[email protected]>

* Changed build branch from feature-flutter to develop (#287)

Signed-off-by: Piyush7034 <[email protected]>

* added event id for scan button and preview doc (#293)

Signed-off-by: Sachin S P <[email protected]>
Co-authored-by: Sachin S P <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>

* Added back button functionality on registration screen (#263)

* Added back button functionality on registration screen

Signed-off-by: Piyush7034 <[email protected]>

* Changed print ack event id to REG-EVT-012

Signed-off-by: Piyush7034 <[email protected]>

---------

Signed-off-by: Piyush7034 <[email protected]>

* Fixed
document upload screen based on mavel script (#281)

* document upload screen based on mavel script

Signed-off-by: Sachin S P <[email protected]>

* resolve merge conflict

Signed-off-by: Sachin S P <[email protected]>

---------

Signed-off-by: Sachin S P <[email protected]>
Co-authored-by: Sachin S P <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>

* RCF-88 DashBoard UI (#291)

* dashboard ui and functionality

Signed-off-by: Sachin S P <[email protected]>

* dashboard ui and functionality

Signed-off-by: Sachin S P <[email protected]>

* handle null check

Signed-off-by: Sachin S P <[email protected]>

* null handle

Signed-off-by: Sachin S P <[email protected]>

* dashboard ui and functionality

Signed-off-by: Sachin S P <[email protected]>

* commented 30 days logic

Signed-off-by: Sachin S P <[email protected]>

* commented 30 days logic

Signed-off-by: Sachin S P <[email protected]>

* changed the logic and name

Signed-off-by: Sachin S P <[email protected]>

---------

Signed-off-by: Sachin S P <[email protected]>
Co-authored-by: Sachin S P <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>

* RCF-88 (#301)

* dashboard ui and functionality

Signed-off-by: Sachin S P <[email protected]>

* dashboard ui and functionality

Signed-off-by: Sachin S P <[email protected]>

* handle null check

Signed-off-by: Sachin S P <[email protected]>

* null handle

Signed-off-by: Sachin S P <[email protected]>

* dashboard ui and functionality

Signed-off-by: Sachin S P <[email protected]>

* commented 30 days logic

Signed-off-by: Sachin S P <[email protected]>

* commented 30 days logic

Signed-off-by: Sachin S P <[email protected]>

* changed the logic and name

Signed-off-by: Sachin S P <[email protected]>

* removed some import

Signed-off-by: Sachin S P <[email protected]>

---------

Signed-off-by: Sachin S P <[email protected]>
Co-authored-by: Sachin S P <[email protected]>
Signed-off-by: Piyush7034 <[email protected]>

* RCF-431 Fixed and rescan enabled for operator onboarding

Signed-off-by: Aviral Mishra <[email protected]>

* Pigeon Issue Resolved

Signed-off-by: Aviral Mishra <[email protected]>

* Removed vscode file

Signed-off-by: Aviral Mishra <[email protected]>

* Removed VScode folder

Signed-off-by: Aviral Mishra <[email protected]>

* Fixed timestamp issue

Signed-off-by: Piyush7034 <[email protected]>

* Operator Saving fail scenario added

Signed-off-by: Aviral Mishra <[email protected]>

---------

Signed-off-by: Piyush7034 <[email protected]>
Signed-off-by: G S Prakash <[email protected]>
Signed-off-by: Aditya Singh(aditya.singh509) <[email protected]>
Signed-off-by: aviral-mishra-hunter <[email protected]>
Signed-off-by: Aviral Mishra <[email protected]>
Signed-off-by: Sachin S P <[email protected]>
Signed-off-by: Aditya Singh <[email protected]>
Signed-off-by: HimajaDhanyamraju2 <[email protected]>
Signed-off-by: Jayesh Kharode <[email protected]>
Signed-off-by: jayesh12234 <[email protected]>
Co-authored-by: G S Prakash <[email protected]>
Co-authored-by: G S Prakash Naidu <[email protected]>
Co-authored-by: GSPrakashNaiduCyberpwn <[email protected]>
Co-authored-by: Aditya Singh <[email protected]>
Co-authored-by: Aditya Singh(aditya.singh509) <[email protected]>
Co-authored-by: aviral-mishra-hunter <[email protected]>
Co-authored-by: Aviral Mishra <[email protected]>
Co-authored-by: Aviral Mishra <[email protected]>
Co-authored-by: Sachin s p <[email protected]>
Co-authored-by: Sachin S P <[email protected]>
Co-authored-by: Aditya Singh <[email protected]>
Co-authored-by: Himaja Dhanyamraju <[email protected]>
Co-authored-by: HimajaDhanyamraju2 <[email protected]>
Co-authored-by: jayesh12234 <[email protected]>
Co-authored-by: Jayesh Kharode <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants