Skip to content
This repository was archived by the owner on Jun 15, 2023. It is now read-only.

Commit 28903be

Browse files
committed
fix(schema import): proper import of colophon telus' schema
1 parent 9202ca3 commit 28903be

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

lib/graph.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const parser = require('@colophon/schema')
1+
const parser = require('@telus/colophon-schema')
22
const log = require('../lib/log')
33

44
const fragments = {

routes/repository.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const db = require('../lib/db/')
22
const scan = require('../lib/scan/repo')
3-
const parser = require('@colophon/schema')
3+
const parser = require('@telus/colophon-schema')
44

55
// capture error tree
66
const parseErrors = content => parser(content).catch(error => error.name === 'ColophonError' ? error.errors : error.message)

views/repository/private/invalid.pug

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ div.card
2525
else
2626
div.card-alert.alert.alert-info.mb-0
2727
i.fe.fe-alert-triangle.mr-2
28-
span Please consult the #[a(href='https://github.com/project-colophon/schema' target='_blank') colophon schema] specification.
28+
span Please consult the #[a(href='https://github.com/telus/telus-colophon-schema' target='_blank') colophon schema] specification.
2929
div.table-responsive
3030
table.table.table-hover.table-outline.table-vcenter.text-nowrap.card-table
3131
thead

views/repository/private/missing.pug

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ div.card
3333
| title: Source Code
3434
| uri: https://github.com/#{repository.org}/#{repository.name}
3535

36-
div read more about the #[a(href='https://github.com/project-colophon/schema' target='_blank') colophon schema] for further customization.
36+
div read more about the #[a(href='https://github.com/telus/telus-colophon-schema' target='_blank') colophon schema] for further customization.

views/repository/public/404.pug

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ block content
1515
h2 Getting Started
1616
p if you're the repository owner, start by #[a(href='/auth/in') logging in] to your account to configure this repository.
1717

18-
div read more about the #[a(href='https://github.com/project-colophon/schema' target='_blank') colophon schema] for further information.
18+
div read more about the #[a(href='https://github.com/telus/telus-colophon-schema' target='_blank') colophon schema] for further information.

views/repository/public/missing.pug

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ div.card
1414
h2 Getting Started
1515
p if you're the repository owner, start by #[a(href='/auth/in') logging in] to your account to configure this repository.
1616

17-
div read more about the #[a(href='https://github.com/project-colophon/schema' target='_blank') colophon schema] for further information.
17+
div read more about the #[a(href='https://github.com/telus/telus-colophon-schema' target='_blank') colophon schema] for further information.

0 commit comments

Comments
 (0)