[PR #2505] [CLOSED] AC-1391 automation test #3603

Closed
opened 2025-11-26 23:35:03 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/bitwarden/android/pull/2505
Author: @vvolkgang
Created: 5/4/2023
Status: Closed

Base: masterHead: beeep-totp


📝 Commits (10+)

📊 Changes

11 files changed (+912 additions, -0 deletions)

View changed files

📝 src/App/App.csproj (+1 -0)
src/App/Controls/AuthenticatorViewCell/AuthenticatorViewCell.xaml (+113 -0)
src/App/Controls/AuthenticatorViewCell/AuthenticatorViewCell.xaml.cs (+121 -0)
src/App/Controls/AuthenticatorViewCell/AuthenticatorViewCellViewModel.cs (+103 -0)
src/App/Pages/Authenticator/AuthenticatorPage.xaml (+97 -0)
src/App/Pages/Authenticator/AuthenticatorPage.xaml.cs (+176 -0)
src/App/Pages/Authenticator/AuthenticatorPageListItem.cs (+129 -0)
src/App/Pages/Authenticator/AuthenticatorPageViewModel.cs (+153 -0)
📝 src/App/Pages/TabsPage.cs (+9 -0)
📝 src/App/Resources/AppResources.Designer.cs (+6 -0)
📝 src/App/Resources/AppResources.resx (+4 -0)

📄 Description

Type of change

  • Bug fix
  • New feature development
  • Tech debt (refactoring, code cleanup, dependency upgrades, etc)
  • Build/deploy pipeline (DevOps)
  • Other

Objective

Code changes

  • file.ext: Description of what was changed and why

Screenshots

Before you submit

  • Please check for formatting errors (dotnet format --verify-no-changes) (required)
  • Please add unit tests where it makes sense to do so (encouraged but not required)
  • If this change requires a documentation update - notify the documentation team
  • If this change has particular deployment requirements - notify the DevOps team

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/bitwarden/android/pull/2505 **Author:** [@vvolkgang](https://github.com/vvolkgang) **Created:** 5/4/2023 **Status:** ❌ Closed **Base:** `master` ← **Head:** `beeep-totp` --- ### 📝 Commits (10+) - [`b02c58e`](https://github.com/bitwarden/android/commit/b02c58e3623781ada1e9e8f820b403a5c48274aa) Initial commit of new TOTP page - [`bb37bac`](https://github.com/bitwarden/android/commit/bb37bac620e99ec6a117170e64015edecf37d39d) Revert config files from previous commit - [`98dd829`](https://github.com/bitwarden/android/commit/98dd8298ea920e25b45938f805b005b5c70158e9) clear extra code and fix build - [`0ad992f`](https://github.com/bitwarden/android/commit/0ad992faeca1480b25524371bed5195520f1f2db) add tab page - [`26e0e43`](https://github.com/bitwarden/android/commit/26e0e43bb47df9685fcbbda8df6f6e9bc2e0f24a) Merge branch 'master' into beeep-totp - [`008ed8e`](https://github.com/bitwarden/android/commit/008ed8eb56cf273d04037df5da57264eb22cfb25) add authentication view cell - [`3ac2580`](https://github.com/bitwarden/android/commit/3ac2580742bb9862490dc6e709cae6753054d7d0) add toolbar icons - [`0b626ce`](https://github.com/bitwarden/android/commit/0b626cedc7405ab7a20950159bd6b13f9a1202e3) got the countdown working - [`655b51b`](https://github.com/bitwarden/android/commit/655b51b6a585754d90aca1a3ff85973047dc3cde) Merge branch 'master' into beeep-totp - [`a484ca6`](https://github.com/bitwarden/android/commit/a484ca633ca815c33311e10793e2ab60b129e5fa) Merge branch 'beeep-totp' of https://github.com/bitwarden/mobile into beeep-totp ### 📊 Changes **11 files changed** (+912 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `src/App/App.csproj` (+1 -0) ➕ `src/App/Controls/AuthenticatorViewCell/AuthenticatorViewCell.xaml` (+113 -0) ➕ `src/App/Controls/AuthenticatorViewCell/AuthenticatorViewCell.xaml.cs` (+121 -0) ➕ `src/App/Controls/AuthenticatorViewCell/AuthenticatorViewCellViewModel.cs` (+103 -0) ➕ `src/App/Pages/Authenticator/AuthenticatorPage.xaml` (+97 -0) ➕ `src/App/Pages/Authenticator/AuthenticatorPage.xaml.cs` (+176 -0) ➕ `src/App/Pages/Authenticator/AuthenticatorPageListItem.cs` (+129 -0) ➕ `src/App/Pages/Authenticator/AuthenticatorPageViewModel.cs` (+153 -0) 📝 `src/App/Pages/TabsPage.cs` (+9 -0) 📝 `src/App/Resources/AppResources.Designer.cs` (+6 -0) 📝 `src/App/Resources/AppResources.resx` (+4 -0) </details> ### 📄 Description ## Type of change - [ ] Bug fix - [ ] New feature development - [ ] Tech debt (refactoring, code cleanup, dependency upgrades, etc) - [ ] Build/deploy pipeline (DevOps) - [ ] Other ## Objective <!--Describe what the purpose of this PR is. For example: what bug you're fixing or what new feature you're adding--> ## Code changes <!--Explain the changes you've made to each file or major component. This should help the reviewer understand your changes--> <!--Also refer to any related changes or PRs in other repositories--> * **file.ext:** Description of what was changed and why ## Screenshots <!--Required for any UI changes. Delete if not applicable--> ## Before you submit - Please check for formatting errors (`dotnet format --verify-no-changes`) (required) - Please add **unit tests** where it makes sense to do so (encouraged but not required) - If this change requires a **documentation update** - notify the documentation team - If this change has particular **deployment requirements** - notify the DevOps team --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2025-11-26 23:35:03 -06:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/android#3603