Skip to content
Next
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Minds Frontend
Project
Project
Details
Activity
Releases
Cycle Analytics
Insights
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
863
Issues
863
List
Boards
Labels
Service Desk
Milestones
Merge Requests
50
Merge Requests
50
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
List
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Frontend
Commits
8844ac61
Commit
8844ac61
authored
20 minutes ago
by
Marcelo Rivera
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(fix): remove donate component and its routes
parent
c8067eb0
epic/minds-pro
1 merge request
!507
WIP: (feat): Minds Pro (development branch) - Release 3
Pipeline
#77601279
running with stages
Changes
5
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
0 additions
and
57 deletions
+0
-57
channel.component.ts
src/app/modules/pro/channel/channel.component.ts
+0
-4
donate.component.html
src/app/modules/pro/channel/donate/donate.component.html
+0
-9
donate.component.scss
src/app/modules/pro/channel/donate/donate.component.scss
+0
-11
donate.component.ts
src/app/modules/pro/channel/donate/donate.component.ts
+0
-23
pro.module.ts
src/app/modules/pro/pro.module.ts
+0
-10
No files found.
src/app/modules/pro/channel/channel.component.ts
View file @
8844ac61
...
...
@@ -332,10 +332,6 @@ export class ProChannelComponent implements OnInit, AfterViewInit, OnDestroy {
return
this
.
channelService
.
getRouterLink
(
'
communities
'
);
}
get
donateRouterLink
()
{
return
this
.
channelService
.
getRouterLink
(
'
donate
'
);
}
get
proSettingsLink
()
{
return
[
'
/pro/settings
'
];
}
...
...
This diff is collapsed.
Click to expand it.
src/app/modules/pro/channel/donate/donate.component.html
deleted
100644 → 0
View file @
c8067eb0
<div
class=
"m-pro--channel-donate"
>
<m-wire--creator
[object]=
"currentChannel"
[opts]=
"{onComplete: onWireCompleted}"
[inModal]=
"false"
>
</m-wire--creator>
</div>
This diff is collapsed.
Click to expand it.
src/app/modules/pro/channel/donate/donate.component.scss
deleted
100644 → 0
View file @
c8067eb0
m-pro--channel-donate
{
.m-pro--channel-donate
{
font-weight
:
400
;
max-width
:
900px
;
margin
:
auto
;
position
:
relative
;
padding
:
32px
;
border-radius
:
6px
;
background-color
:
var
(
--
m-pro--plain-background-color
);
}
}
This diff is collapsed.
Click to expand it.
src/app/modules/pro/channel/donate/donate.component.ts
deleted
100644 → 0
View file @
c8067eb0
import
{
ChangeDetectionStrategy
,
Component
}
from
'
@angular/core
'
;
import
{
ProChannelService
}
from
"
../channel.service
"
;
@
Component
({
selector
:
'
m-pro--channel-donate
'
,
templateUrl
:
'
donate.component.html
'
,
changeDetection
:
ChangeDetectionStrategy
.
OnPush
,
})
export
class
ProChannelDonateComponent
{
get
currentChannel
()
{
return
this
.
channelService
.
currentChannel
;
}
constructor
(
public
channelService
:
ProChannelService
)
{
}
onWireCompleted
()
{
throw
new
Error
(
'
Not implemented
'
);
}
}
This diff is collapsed.
Click to expand it.
src/app/modules/pro/pro.module.ts
View file @
8844ac61
...
...
@@ -10,7 +10,6 @@ import { ProChannelComponent } from "./channel/channel.component";
import
{
ProChannelLoginComponent
}
from
"
./channel/login/login.component
"
;
import
{
MindsFormsModule
}
from
"
../forms/forms.module
"
;
import
{
ProChannelListComponent
}
from
"
./channel/list/list.component
"
;
import
{
ProChannelDonateComponent
}
from
'
./channel/donate/donate.component
'
;
import
{
ProTileComponent
}
from
"
./channel/tiles/media/tile.component
"
;
import
{
NewsfeedModule
}
from
"
../newsfeed/newsfeed.module
"
;
import
{
ProSettingsComponent
}
from
'
./settings/settings.component
'
;
...
...
@@ -46,10 +45,6 @@ const routes: Routes = [
path
:
''
,
component
:
ProChannelHomeComponent
,
},
{
path
:
'
donate
'
,
component
:
ProChannelDonateComponent
},
{
path
:
'
login
'
,
component
:
ProChannelLoginComponent
...
...
@@ -73,10 +68,6 @@ export const STANDALONE_ROUTES = [
path
:
''
,
component
:
ProChannelHomeComponent
,
},
{
path
:
'
donate
'
,
component
:
ProChannelDonateComponent
},
{
path
:
'
login
'
,
component
:
ProChannelLoginComponent
...
...
@@ -117,7 +108,6 @@ export const STANDALONE_ROUTES = [
ProChannelComponent
,
ProChannelLoginComponent
,
ProChannelListComponent
,
ProChannelDonateComponent
,
ProChannelFooterComponent
,
ProGroupTileComponent
,
ProUnsubscribeModalComponent
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment