mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-04-06 00:32:12 +02:00
- Implement CodeRepositoryService for database interactions. - Enhance GitHub utility functions for app authentication and repository management. - Introduce new permissions for Code Repository actions (create, delete, edit, read). - Create Code Repository pages and routes in the dashboard. - Add side menu and breadcrumbs for Code Repository navigation. - Implement settings and delete functionality for Code Repositories. - Update Helm chart to include GitHub App configuration options. - Modify example environment configuration to include GitHub App credentials.
11 lines
248 B
TypeScript
11 lines
248 B
TypeScript
import DatabaseService from "./DatabaseService";
|
|
import Model from "../../Models/DatabaseModels/CodeRepository";
|
|
|
|
export class Service extends DatabaseService<Model> {
|
|
public constructor() {
|
|
super(Model);
|
|
}
|
|
}
|
|
|
|
export default new Service();
|