7b6624ecc3
redesigned the project sharing popup to be a multi select dropdown that populates the options by using the input as a fuzzy search filter on the current users & invited users. users can now also be directly invited by email from the project share window. if invited this way, then the user will receive an email that sends them to a registration page, then a confirmation page. the initial registration was always redone so that it uses a similar system to the above in that it now will accept the first registered user if there are no other accounts (besides 'system').
28 lines
881 B
Modula-2
28 lines
881 B
Modula-2
module github.com/jordanknott/taskcafe
|
|
|
|
go 1.13
|
|
|
|
require (
|
|
github.com/99designs/gqlgen v0.11.3
|
|
github.com/RichardKnop/machinery v1.9.1
|
|
github.com/dgrijalva/jwt-go v3.2.0+incompatible
|
|
github.com/go-chi/chi v3.3.2+incompatible
|
|
github.com/golang-migrate/migrate/v4 v4.11.0
|
|
github.com/google/uuid v1.1.1
|
|
github.com/jmoiron/sqlx v1.2.0
|
|
github.com/lib/pq v1.3.0
|
|
github.com/lithammer/fuzzysearch v1.1.0
|
|
github.com/magefile/mage v1.9.0
|
|
github.com/matcornic/hermes/v2 v2.1.0
|
|
github.com/pelletier/go-toml v1.8.0 // indirect
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/shurcooL/vfsgen v0.0.0-20180121065927-ffb13db8def0
|
|
github.com/sirupsen/logrus v1.4.2
|
|
github.com/spf13/cobra v1.0.0
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
github.com/spf13/viper v1.4.0
|
|
github.com/vektah/gqlparser/v2 v2.0.1
|
|
golang.org/x/crypto v0.0.0-20200709230013-948cd5f35899
|
|
gopkg.in/mail.v2 v2.3.1
|
|
)
|