-
Notifications
You must be signed in to change notification settings - Fork 1
Tta 174 create pop up message for redirecting users from legacy to production #935
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
Merged
andresacg30
merged 21 commits into
master
from
TTA-174-create-pop-up-message-for-redirecting-users-from-legacy-to-production
Oct 25, 2022
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
57d1766
feat: TT-174 pop-up message for redirect to b2 from legacy
andresacg30 3ff3998
change variable from let to const
andresacg30 4b5a5ad
v2-redirect component
2287a31
create html for figma design
andresacg30 e29510f
erase images bg
043cbe2
Montserrat Font
mmaquina aad71a6
add media screen for responsiveness
andresacg30 27e0181
fix: TT-174 css
mmaquina 4ce0c3d
final styling
andresacg30 1290253
fix sonarcloud problems
andresacg30 7a6c535
fix tests errors
andresacg30 af6952d
fix bad naming for css
andresacg30 bc8453e
fix import errors
mmaquina 90b51e2
abigails comments
andresacg30 dbf944c
adding test for conditional env checking
andresacg30 6c95748
add title for html
andresacg30 3198561
remove app-routing-module from test
2d29095
solve conflicts
086b86d
exclude test files
20f7df2
fix: TTA-174 update to check if it is legacy
mmaquina f6976dc
refactor: TTA-174 merge from master to include spinner
mmaquina File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
v2-redirect component
- Loading branch information
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<p>El tiempo siempre llega para todo, y esta vez llego para nosotros | ||
<img src="https://www.nicepng.com/png/detail/399-3993768_sad-clock-bfb-clock.png" alt="sad-clock"/> | ||
</p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import { ComponentFixture, TestBed } from '@angular/core/testing'; | ||
|
||
import { V2RedirectComponent } from './v2-redirect.component'; | ||
|
||
describe('V2RedirectComponent', () => { | ||
let component: V2RedirectComponent; | ||
let fixture: ComponentFixture<V2RedirectComponent>; | ||
|
||
beforeEach(async () => { | ||
await TestBed.configureTestingModule({ | ||
declarations: [ V2RedirectComponent ] | ||
}) | ||
.compileComponents(); | ||
}); | ||
|
||
beforeEach(() => { | ||
fixture = TestBed.createComponent(V2RedirectComponent); | ||
component = fixture.componentInstance; | ||
fixture.detectChanges(); | ||
}); | ||
|
||
it('should create', () => { | ||
expect(component).toBeTruthy(); | ||
}); | ||
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { Component, OnInit } from '@angular/core'; | ||
reihtw marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
@Component({ | ||
selector: 'app-v2-redirect', | ||
templateUrl: './v2-redirect.component.html', | ||
styleUrls: ['./v2-redirect.component.css'] | ||
}) | ||
export class V2RedirectComponent implements OnInit { | ||
|
||
constructor() { } | ||
|
||
ngOnInit(): void { | ||
} | ||
|
||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.