Skip to content

Commit

Permalink
fix(gqlSchema): Capitalize GQL models for Admin-UI compliance/friendl…
Browse files Browse the repository at this point in the history
…iness
  • Loading branch information
armenr committed May 5, 2021
1 parent 5a95c3f commit c054bca
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions provider-utils/awscloudformation/schemas/schema.graphql.ejs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@


type vodAsset @model (subscriptions: {level: public})
type VodAsset @model (subscriptions: {level: public})
@auth(
rules: [
<% if (locals.permissions && locals.permissions.permissionSchema.includes("any")) { -%>
Expand All @@ -21,11 +21,11 @@ type vodAsset @model (subscriptions: {level: public})
description:String!

#DO NOT EDIT
video:videoObject @connection
}
video:VideoObject @connection
}

#DO NOT EDIT
type videoObject @model
type VideoObject @model
@auth(
rules: [
<% if (locals.permissions && locals.permissions.permissionSchema.includes("any")) { -%>
Expand Down

0 comments on commit c054bca

Please sign in to comment.