Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/backend/bigquery/buildSqlQuery.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ const prefix = (keywords?: string[], link?: string) => `
publishing_app,
first_published_at,
public_updated_at,
publisher_updated_at,
withdrawn_at,
withdrawn_explanation,
page_views,
Expand Down
2 changes: 2 additions & 0 deletions src/backend/bigquery/buildSqlQuery.ts
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,7 @@ export const buildSqlQuery = function (
publishing_app,
first_published_at,
public_updated_at,
publisher_updated_at,
withdrawn_at,
withdrawn_explanation,
page_views,
Expand Down Expand Up @@ -220,6 +221,7 @@ export const buildSqlQuery = function (
publishing_app,
first_published_at,
public_updated_at,
publisher_updated_at,
withdrawn_at,
withdrawn_explanation,
page_views,
Expand Down
4 changes: 4 additions & 0 deletions src/backend/utils/csv.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ const csvFieldFormatters: Record<string, any> = {
name: 'Last major update',
format: formatDateTime,
},
publisher_updated_at: {
name: 'Last update in the Publisher app',
format: formatDateTime,
},
taxons: {
name: 'Topic tags',
format: formatNames,
Expand Down
1 change: 1 addition & 0 deletions src/frontend/types/state-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ export type Field =
| 'publishing_app'
| 'first_published_at'
| 'public_updated_at'
| 'publisher_updated_at'
| 'taxons'
| 'primary_organisation'
| 'all_organisations'
Expand Down
4 changes: 4 additions & 0 deletions src/frontend/view/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ export const fieldFormatters: Record<Field, any> = {
name: 'Last major update',
format: formatDateTime,
},
publisher_updated_at: {
name: 'Last update in the Publisher app',
format: formatDateTime,
},
taxons: {
name: 'Topic tags',
format: formatNames,
Expand Down