diff --git a/index.js b/index.js index 6fcc2b7..83f4b0c 100644 --- a/index.js +++ b/index.js @@ -1,3 +1,10 @@ +/* + * Copyright (C) Sapphirecode - All Rights Reserved + * This file is part of appreports which is released under GPL-3.0-or-later. + * See file 'LICENSE' for full license details. + * Created by Timo Hocker , August 2020 + */ + // @ts-nocheck 'use strict'; diff --git a/lib/api/get-app.js b/lib/api/get-app.js index ecb9065..97122a5 100644 --- a/lib/api/get-app.js +++ b/lib/api/get-app.js @@ -1,3 +1,10 @@ +/* + * Copyright (C) Sapphirecode - All Rights Reserved + * This file is part of appreports which is released under GPL-3.0-or-later. + * See file 'LICENSE' for full license details. + * Created by Timo Hocker , August 2020 + */ + 'use strict'; const db = require ('../db'); diff --git a/lib/api/get-log.js b/lib/api/get-log.js index 3f9efd0..af5d8b4 100644 --- a/lib/api/get-log.js +++ b/lib/api/get-log.js @@ -1,3 +1,10 @@ +/* + * Copyright (C) Sapphirecode - All Rights Reserved + * This file is part of appreports which is released under GPL-3.0-or-later. + * See file 'LICENSE' for full license details. + * Created by Timo Hocker , August 2020 + */ + 'use strict'; const db = require ('../db'); diff --git a/lib/api/index.js b/lib/api/index.js index 65a934b..de299cc 100644 --- a/lib/api/index.js +++ b/lib/api/index.js @@ -1,3 +1,10 @@ +/* + * Copyright (C) Sapphirecode - All Rights Reserved + * This file is part of appreports which is released under GPL-3.0-or-later. + * See file 'LICENSE' for full license details. + * Created by Timo Hocker , August 2020 + */ + 'use strict'; const router = require ('express') diff --git a/lib/db/app.js b/lib/db/app.js index 762c92c..a8f74aa 100644 --- a/lib/db/app.js +++ b/lib/db/app.js @@ -1,3 +1,10 @@ +/* + * Copyright (C) Sapphirecode - All Rights Reserved + * This file is part of appreports which is released under GPL-3.0-or-later. + * See file 'LICENSE' for full license details. + * Created by Timo Hocker , August 2020 + */ + 'use strict'; module.exports = (get_db) => ({ diff --git a/lib/db/index.js b/lib/db/index.js index 8b284b6..7b037d4 100644 --- a/lib/db/index.js +++ b/lib/db/index.js @@ -1,3 +1,10 @@ +/* + * Copyright (C) Sapphirecode - All Rights Reserved + * This file is part of appreports which is released under GPL-3.0-or-later. + * See file 'LICENSE' for full license details. + * Created by Timo Hocker , August 2020 + */ + 'use strict'; const knex = require ('knex'); diff --git a/lib/db/log.js b/lib/db/log.js index 20db904..e39da50 100644 --- a/lib/db/log.js +++ b/lib/db/log.js @@ -1,3 +1,10 @@ +/* + * Copyright (C) Sapphirecode - All Rights Reserved + * This file is part of appreports which is released under GPL-3.0-or-later. + * See file 'LICENSE' for full license details. + * Created by Timo Hocker , August 2020 + */ + 'use strict'; module.exports = (get_db) => ({ diff --git a/migrations/00000-init.js b/migrations/00000-init.js index 710e79b..7373ecd 100644 --- a/migrations/00000-init.js +++ b/migrations/00000-init.js @@ -1,3 +1,10 @@ +/* + * Copyright (C) Sapphirecode - All Rights Reserved + * This file is part of appreports which is released under GPL-3.0-or-later. + * See file 'LICENSE' for full license details. + * Created by Timo Hocker , August 2020 + */ + 'use strict'; async function create_app (knex) { diff --git a/package.json b/package.json index 2354e36..4bde7b5 100644 --- a/package.json +++ b/package.json @@ -48,8 +48,5 @@ }, "license": "GPL-3.0-or-later", "main": "index.js", - "author": { - "name": "Timo Hocker", - "email": "timo@scode.ovh" - } -} + "author": "Timo Hocker " +} \ No newline at end of file diff --git a/seeds/fake.js b/seeds/fake.js index 4023946..fb53073 100644 --- a/seeds/fake.js +++ b/seeds/fake.js @@ -1,3 +1,10 @@ +/* + * Copyright (C) Sapphirecode - All Rights Reserved + * This file is part of appreports which is released under GPL-3.0-or-later. + * See file 'LICENSE' for full license details. + * Created by Timo Hocker , August 2020 + */ + 'use strict'; const faker = require ('faker'); diff --git a/src/default.js b/src/default.js index df591fb..d718491 100644 --- a/src/default.js +++ b/src/default.js @@ -1,3 +1,10 @@ +/* + * Copyright (C) Sapphirecode - All Rights Reserved + * This file is part of appreports which is released under GPL-3.0-or-later. + * See file 'LICENSE' for full license details. + * Created by Timo Hocker , August 2020 + */ + export default [ { type: 'table', diff --git a/src/helper.js b/src/helper.js index d3837dd..89b1268 100644 --- a/src/helper.js +++ b/src/helper.js @@ -1,3 +1,10 @@ +/* + * Copyright (C) Sapphirecode - All Rights Reserved + * This file is part of appreports which is released under GPL-3.0-or-later. + * See file 'LICENSE' for full license details. + * Created by Timo Hocker , August 2020 + */ + export function resolve_data (set, index) { const keys = typeof index === 'string' ? index.split ('/') : index; const data = set[keys[0]]; diff --git a/src/main.js b/src/main.js index cead7e8..ff2566c 100644 --- a/src/main.js +++ b/src/main.js @@ -1,4 +1,3 @@ -// @ts-nocheck /* * Copyright (C) Sapphirecode - All Rights Reserved * This file is part of appreports which is released under GPL-3.0-or-later. @@ -6,6 +5,7 @@ * Created by Timo Hocker , July 2020 */ +// @ts-nocheck import Vue from 'vue'; import App from './App.vue'; import router from './router'; diff --git a/src/template.js b/src/template.js index b1dbaf8..fe59e23 100644 --- a/src/template.js +++ b/src/template.js @@ -1,3 +1,10 @@ +/* + * Copyright (C) Sapphirecode - All Rights Reserved + * This file is part of appreports which is released under GPL-3.0-or-later. + * See file 'LICENSE' for full license details. + * Created by Timo Hocker , August 2020 + */ + export default { type: 'array', child: {