Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
xx messenger iOS
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mobile
iOS
xx messenger iOS
Merge requests
!68
Terms and condition feature
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Terms and condition feature
feature/terms-and-conditions
into
development
Overview
20
Commits
5
Pipelines
0
Changes
14
Merged
Terms and condition feature
Bruno Muniz
requested to merge
feature/terms-and-conditions
into
development
Aug 11, 2022
Overview
14
Commits
5
Pipelines
0
Changes
14
Edited
Aug 11, 2022
by
Bruno Muniz
0
0
Merge request reports
Compare
development
version 3
03eb1db7
Aug 11, 2022
version 2
02cb15fd
Aug 11, 2022
version 1
9a04121d
Aug 11, 2022
development (base)
and
version 1
latest version
3befb002
5 commits,
Aug 11, 2022
version 3
03eb1db7
4 commits,
Aug 11, 2022
version 2
02cb15fd
2 commits,
Aug 11, 2022
version 1
9a04121d
1 commit,
Aug 11, 2022
14 files
+
361
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
14
Sources/App/DependencyRegistrator.swift
+
10
−
0
View file @ 9a04121d
Edit in single-file editor
Open in Web IDE
Show full file
@@ -34,6 +34,7 @@ import DependencyInjection
import
ScanFeature
import
ChatFeature
import
MenuFeature
import
TermsFeature
import
BackupFeature
import
SearchFeature
import
LaunchFeature
@@ -111,8 +112,16 @@ struct DependencyRegistrator {
// MARK: Coordinators
container
.
register
(
TermsCoordinator
.
live
(
usernameFactory
:
OnboardingUsernameController
.
init
(
_
:),
chatListFactory
:
ChatListController
.
init
)
)
container
.
register
(
LaunchCoordinator
(
termsFactory
:
TermsConditionsController
.
init
(
_
:),
searchFactory
:
SearchContainerController
.
init
,
requestsFactory
:
RequestsContainerController
.
init
,
chatListFactory
:
ChatListController
.
init
,
@@ -206,6 +215,7 @@ struct DependencyRegistrator {
searchFactory
:
SearchContainerController
.
init
,
welcomeFactory
:
OnboardingWelcomeController
.
init
,
chatListFactory
:
ChatListController
.
init
,
termsFactory
:
TermsConditionsController
.
init
(
_
:),
usernameFactory
:
OnboardingUsernameController
.
init
(
_
:),
restoreListFactory
:
RestoreListController
.
init
(
_
:),
successFactory
:
OnboardingSuccessController
.
init
(
_
:),
Loading