diff options
author | Luke Granger-Brown <git@lukegb.com> | 2020-06-18 02:52:33 +0100 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2020-06-27 22:56:10 +0200 |
commit | 4a28f25347addf05708cdff37ecace4139f01779 (patch) | |
tree | 145e5fd420f70b182d66a5824d76300b5307d509 /graphql/config/config.go | |
parent | 23228101a2a38a139f6fc2cafc18e9f08d911089 (diff) | |
download | git-bug-4a28f25347addf05708cdff37ecace4139f01779.tar.gz git-bug-4a28f25347addf05708cdff37ecace4139f01779.zip |
Add support for read-only mode for web UI.
Fixes #402.
Diffstat (limited to 'graphql/config/config.go')
-rw-r--r-- | graphql/config/config.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/graphql/config/config.go b/graphql/config/config.go new file mode 100644 index 00000000..2e5f11b3 --- /dev/null +++ b/graphql/config/config.go @@ -0,0 +1,7 @@ +// Package config contains configuration for GraphQL stuff. +package config + +// Config holds configuration elements. +type Config struct { + ReadOnly bool +} |