Skip to content

Commit

Permalink
add revenue
Browse files Browse the repository at this point in the history
  • Loading branch information
emre committed Mar 31, 2021
1 parent c4fc5ad commit 1b36ae0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion common.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ local predefined = import 'predefined.jsonnet';
ltv_revenue: {
category: 'Revenue',
sql: '{{TABLE}}.`user_ltv`.`revenue`',
hidden: true,
hidden: false,
type: 'double',
},
ltv_currency: {
Expand Down
2 changes: 1 addition & 1 deletion custom_events.models.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ std.map(function(event_type)
{
name: 'firebase_event_' + event_type,
label: (if defined != null then '[Firebase] ' else '') + event_type,
measures: common.measures + common.all_events_revenue_measures + if defined != null && std.objectHas(defined, 'measures') then defined.measures else {},
measures: common.measures + if defined != null && std.objectHas(defined, 'measures') then defined.measures else {},
mappings: common.mappings,
category: 'Firebase Events',
relations: common.relations + if defined != null && std.objectHas(defined, 'relations') then defined.relations else {},
Expand Down

0 comments on commit 1b36ae0

Please sign in to comment.