mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 10:21:52 +00:00
* implement updates tab for viewing all updates from all marketplaces in one place * remove auto-check-updates * feat: implement updates page (#1888) * feat: implement updates page * chore: comments * better styling in update tab * rework marketplace service (#1891) * rework marketplace service * remove unneeded ? * fix: refactor marketplace to cache requests Co-authored-by: waterplea <alexander@inkin.ru> Co-authored-by: Alex Inkin <alexander@inkin.ru>
12 lines
323 B
TypeScript
12 lines
323 B
TypeScript
import { NgModule } from '@angular/core'
|
|
import {
|
|
InstallProgressDisplayPipe,
|
|
InstallProgressPipe,
|
|
} from './install-progress.pipe'
|
|
|
|
@NgModule({
|
|
declarations: [InstallProgressPipe, InstallProgressDisplayPipe],
|
|
exports: [InstallProgressPipe, InstallProgressDisplayPipe],
|
|
})
|
|
export class InstallProgressPipeModule {}
|