Update mongo

This commit is contained in:
2026-03-25 20:13:45 +01:00
parent 5517fb5e0f
commit cf25ee6d7f
11 changed files with 34 additions and 27 deletions
@@ -16,8 +16,13 @@
h2.text-danger PATREON WARNING:
p.lead Code relating to Patreon syncing has been removed from the public pixel.horse codebase.
p.lead
| You <b>MUST</b> contact the Pony Town Team before opening a Patreon based off the Pony Town Custom Server source code. Not doing so is a violation of the <a href="https://creativecommons.org/licenses/by-nc/4.0/">CC-BY-NC 4.0</a> license applied to the art and music assets supplied with the game. Please submit a request for approval to <a href="mailto:[email protected]">[email protected]</a>.
| You
b MUST
| contact the Pony Town Team before opening a Patreon based off the Pony Town Custom Server source code. Not doing so is a violation of the
a(href="https://creativecommons.org/licenses/by-nc/4.0/") CC-BY-NC 4.0
| license applied to the art and music assets supplied with the game. Please submit a request for approval to
a(href="mailto:[email protected]") ponytownhelpgmail.com
| .
.row
.col-12
.form
-2
View File
@@ -7,7 +7,6 @@ import { FontAwesomeModule } from '@fortawesome/angular-fontawesome';
import { PopoverModule } from 'ngx-bootstrap/popover';
import { ButtonsModule } from 'ngx-bootstrap/buttons';
import { TooltipModule } from 'ngx-bootstrap/tooltip';
import { SharedModule } from '../shared/shared.module';
import { App } from './app';
@@ -41,7 +40,6 @@ export const routes: Routes = [
PopoverModule.forRoot(),
ButtonsModule.forRoot(),
TooltipModule.forRoot(),
// TypeaheadModule.forRoot(),
SharedModule,
RouterModule.forRoot(routes),
FontAwesomeModule,
+7 -3
View File
@@ -71,10 +71,12 @@ import { FocusTrap } from './directives/focusTrap';
import { HasFeature } from './directives/hasFeature';
import { dropdownDirectives } from './directives/dropdown';
import { SaveActiveTab } from './directives/saveActiveTab';
import { DragDropModule } from '@angular/cdk/drag-drop';
import { SiteNamePipe } from './pipes/siteName';
import { VisitPTButton } from './visit-pt-button/visit-pt-button';
import { VisitPTPony } from './visit-pt-pony/visit-pt-pony';
import { CommonModule } from '@angular/common';
const declarations = [
ActionBar,
@@ -143,7 +145,7 @@ const declarations = [
FocusTrap,
HasFeature,
SaveActiveTab,
SiteNamePipe,
SiteNamePipe
];
@NgModule({
@@ -156,10 +158,12 @@ const declarations = [
ButtonsModule,
ModalModule.forRoot(),
FontAwesomeModule,
DragDropModule,
CommonModule,
// ScrollingModule,
],
declarations: declarations,
exports: declarations,
exports: [declarations]
})
export class SharedModule {
}
}