last name support added

This commit is contained in:
Stephan D
2026-01-16 11:58:47 +01:00
parent 3242fc3744
commit 0d444e5ff4
2 changed files with 34 additions and 3 deletions

View File

@@ -21,6 +21,7 @@ const (
type invitationDesc struct { type invitationDesc struct {
Email string `bson:"email" json:"email"` Email string `bson:"email" json:"email"`
Name string `bson:"name" json:"name"` Name string `bson:"name" json:"name"`
LastName string `bson:"lastName" json:"lastName"`
Comment string `bson:"comment" json:"comment"` Comment string `bson:"comment" json:"comment"`
} }

View File

@@ -0,0 +1,30 @@
# This file configures the static analysis results for your project (errors,
# warnings, and lints).
#
# This enables the 'recommended' set of lints from `package:lints`.
# This set helps identify many issues that may lead to problems when running
# or consuming Dart code, and enforces writing Dart using a single, idiomatic
# style and format.
#
# If you want a smaller set of lints you can change this to specify
# 'package:lints/core.yaml'. These are just the most critical lints
# (the recommended set includes the core lints).
# The core lints are also what is used by pub.dev for scoring packages.
include: package:lints/recommended.yaml
# Uncomment the following section to specify additional rules.
# linter:
# rules:
# - camel_case_types
# analyzer:
# exclude:
# - path/to/excluded/files/**
# For more information about the core and recommended set of lints, see
# https://dart.dev/go/core-lints
# For additional information about configuring this file, see
# https://dart.dev/guides/language/analysis-options