Skip to content
Projects
Groups
Snippets
Help
Sign in / Register
Toggle navigation
Minds Frontend
Project overview
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
381
Merge Requests
58
CI / CD
Security & Compliance
Packages
Analytics
Wiki
Snippets
Members
Collapse sidebar
Close sidebar
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Frontend
Compare Revisions
ab17dc2e9bc7c3ad471f9276960759b757eb74fc...7e8eb1c962f663e3357e9eb105cf62944c34d6b9
Source
7e8eb1c962f663e3357e9eb105cf62944c34d6b9
...
Target
ab17dc2e9bc7c3ad471f9276960759b757eb74fc
Compare
Commits (2)
(chore): cleanup comments input
· 87b5291d
Mark Harding
authored
2 hours ago
87b5291d
(chore): bring sandbox helm chart branch to master
· 7e8eb1c9
Mark Harding
authored
10 minutes ago
7e8eb1c9
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
20 additions
and
6 deletions
+20
-6
.gitlab-ci.yml
View file @
7e8eb1c9
...
...
@@ -253,7 +253,7 @@ review:start:
image
:
minds/helm-eks:latest
script
:
-
aws eks update-kubeconfig --name=sandbox
-
git clone --branch=
epic/SSR
https://gitlab-ci-token:${CI_JOB_TOKEN}@gitlab.com/minds/helm-charts.git
-
git clone --branch=
master
https://gitlab-ci-token:${CI_JOB_TOKEN}@gitlab.com/minds/helm-charts.git
-
"
helm
upgrade
\
--install
\
--reuse-values
\
...
...
This diff is collapsed.
src/app/common/components/post-menu/post-menu.module.ts
View file @
7e8eb1c9
...
...
@@ -5,11 +5,12 @@ import { PostMenuComponent } from './post-menu.component';
import
{
ModalsModule
}
from
'
../../../modules/modals/modals.module
'
;
import
{
FormsModule
}
from
'
@angular/forms
'
;
import
{
CommonModule
}
from
'
../../common.module
'
;
import
{
PostMenuV2Component
}
from
'
./v2/menu.component
'
;
@
NgModule
({
imports
:
[
CommonModule
,
NgCommonModule
,
FormsModule
,
ModalsModule
],
exports
:
[
PostMenuComponent
],
declarations
:
[
PostMenuComponent
],
exports
:
[
PostMenuComponent
,
PostMenuV2Component
],
declarations
:
[
PostMenuComponent
,
PostMenuV2Component
],
providers
:
[],
entryComponents
:
[
PostMenuComponent
],
})
...
...
This diff is collapsed.
src/app/modules/newsfeed/activity/activity.component.html
View file @
7e8eb1c9
<m-activity
__ownerBlock
*ngIf=
"service.displayOptions.showOwnerBlock"
></m-activity
__ownerBlock
>
<m-activity
__ownerBlock
*ngIf=
"service.displayOptions.showOwnerBlock"
>
<ng-container
class=
"m-activityOwnerBlock__right"
>
<m-activity
__menu
></m-activity
__menu
>
</ng-container>
</m-activity
__ownerBlock
>
<m-activity
__content
*ngIf=
"service.canShowContent$ | async"
...
...
This diff is collapsed.
src/app/modules/newsfeed/activity/activity.module.ts
View file @
7e8eb1c9
...
...
@@ -17,6 +17,8 @@ import { MediaModule } from '../../media/media.module';
import
{
ActivityToolbarComponent
}
from
'
./toolbar/toolbar.component
'
;
import
{
ModalsModule
}
from
'
../../modals/modals.module
'
;
import
{
LegacyModule
}
from
'
../../legacy/legacy.module
'
;
import
{
ActivityMenuComponent
}
from
'
./menu/menu.component
'
;
import
{
PostMenuModule
}
from
'
../../../common/components/post-menu/post-menu.module
'
;
@
NgModule
({
imports
:
[
...
...
@@ -31,12 +33,14 @@ import { LegacyModule } from '../../legacy/legacy.module';
VideoModule
,
ModalsModule
,
LegacyModule
,
// For remind button
PostMenuModule
,
],
declarations
:
[
ActivityComponent
,
ActivityOwnerBlockComponent
,
ActivityContentComponent
,
ActivityToolbarComponent
,
ActivityMenuComponent
,
],
providers
:
[],
exports
:
[
ActivityComponent
],
...
...
This diff is collapsed.
src/app/modules/newsfeed/activity/activity.service.ts
View file @
7e8eb1c9
...
...
@@ -9,6 +9,7 @@ export type ActivityDisplayOptions = {
showComments
:
boolean
;
showOnlyCommentsInput
:
boolean
;
showToolbar
:
boolean
;
showBoostMenuOptions
:
boolean
;
showEditedTag
:
boolean
;
fixedHeight
:
boolean
;
};
...
...
@@ -29,6 +30,7 @@ export type ActivityEntity = {
time_created
:
number
;
edited
:
boolean
;
modal_source_url
?:
string
;
ephemeral
?:
boolean
;
};
@
Injectable
()
...
...
@@ -61,6 +63,7 @@ export class ActivityService {
showComments
:
true
,
showOnlyCommentsInput
:
true
,
showToolbar
:
true
,
showBoostMenuOptions
:
false
,
showEditedTag
:
false
,
fixedHeight
:
false
,
};
...
...
This diff is collapsed.
src/app/modules/newsfeed/activity/owner-block/owner-block.component.html
View file @
7e8eb1c9
...
...
@@ -56,6 +56,10 @@
</ng-container>
</div>
<div
class=
".m-activityOwnerBlock__right"
>
<ng-content
select=
".m-activityOwnerBlock__right"
></ng-content>
</div>
<ng-template
#boostedTag
>
<div
class=
"mdl-card__supporting-text is-boosted"
...
...
This diff is collapsed.