summaryrefslogtreecommitdiff
path: root/app/graphql/types/invitation_interface.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/invitation_interface.rb')
-rw-r--r--app/graphql/types/invitation_interface.rb14
1 files changed, 7 insertions, 7 deletions
diff --git a/app/graphql/types/invitation_interface.rb b/app/graphql/types/invitation_interface.rb
index a29716c292e..b1f69f043f2 100644
--- a/app/graphql/types/invitation_interface.rb
+++ b/app/graphql/types/invitation_interface.rb
@@ -5,25 +5,25 @@ module Types
include BaseInterface
field :email, GraphQL::STRING_TYPE, null: false,
- description: 'Email of the member to invite'
+ description: 'Email of the member to invite.'
field :access_level, Types::AccessLevelType, null: true,
- description: 'GitLab::Access level'
+ description: 'GitLab::Access level.'
field :created_by, Types::UserType, null: true,
- description: 'User that authorized membership'
+ description: 'User that authorized membership.'
field :created_at, Types::TimeType, null: true,
- description: 'Date and time the membership was created'
+ description: 'Date and time the membership was created.'
field :updated_at, Types::TimeType, null: true,
- description: 'Date and time the membership was last updated'
+ description: 'Date and time the membership was last updated.'
field :expires_at, Types::TimeType, null: true,
- description: 'Date and time the membership expires'
+ description: 'Date and time the membership expires.'
field :user, Types::UserType, null: true,
- description: 'User that is associated with the member object'
+ description: 'User that is associated with the member object.'
definition_methods do
def resolve_type(object, context)