Hello
As suggested in https://github.com/influxdata/platform/issues/983 I
changed `auths` to `authorizations` to have the key and the link in
line.
I went for this fix in order to avoid BC. I don't know if that's
the fix you had in mind. Or you were speaking more about short and long
terms.
Fixed#983
Signed-off-by: Gianluca Arbezzano <gianarb92@gmail.com>
* Add error handling to spinner
* Fix broken test
* Update retentionPeriod to retentionRules
* fix(http): bucket retention period now empty
Co-authored-by: Chris Goller <goller@gmail.com>
* fix(bucket): remove bucket key from createBucket API
* feat(bucket): update organization buckets
* fix: coerce Bucket type
* chore: create separate components for bucket create / update
* Move organization type definition to own file
Co-Authored-By: Andrew Watkins <121watts@users.noreply.github.com>
* Add organizations link in side nav
Co-Authored-By: Andrew Watkins <121watts@users.noreply.github.com>
* Add organization routes
Co-Authored-By: Andrew Watkins <121watts@users.noreply.github.com>
* Add Organization index and view
Co-Authored-By: Andrew Watkins <121watts@users.noreply.github.com>
* Introduce OrgView
* Fix type errors
* WIP rudimentary view of Org resources
* Add spinner wrapper component
Will make this more awesome later
Co-Authored-By: Andrew Watkins <121watts@users.noreply.github.com>
* Render all org resources in list views with empty states
Co-Authored-By: Andrew Watkins <121watts@users.noreply.github.com>
* Upgrade prettier and tslint configs
* Add back spinners
* Add createOrg API
* Introduce CreateOrgOverlay
* Move org actions and reducer to org dir
* Add autocomplete option to clockface Input
* Implements CreateOrg from OrgIndex
* Introduce delete org from OrgIndex
* Remove CHANGELOG
* Start OrgOptions
* Add Profile Page Header subcomponent
* Make index list items lighter when nested
* Add filter and create UI to buckets list
* Slightly modify appearance of overlays
* Implement update org options tab
* Introduce createBucket in org view
Waiting on https://github.com/influxdata/platform/issues/1118 for
the API to accept milliseconds as retentionPolicies
* WIP introduce Filter component
* Fix linter warnings
* Introduce filter dashboards
* Implement filter and task list
* Add spinner to member list in org view
* Use new index list
* Update executeQueriesAsync to fetch
* Update actions to use executeQueryAsync
* Update flux transform to respect field ordering
* Fix fluxResponse tests
* Add column ordering test case
The generate commands have been modified to take advantage of the new
functionality in Go 1.11 that allows `go run` to execute a package
instead of individual files.
This functionality combined with Go modules allows us to execute a
package directly out of our pinned dependencies rather than accidentally
picking up another binary outside of the build environment.
This also simplifies the Makefile because they no longer have to be
responsible for installing the correct tooling since the Go command
takes care of that logic. It also makes it so that the Makefiles with
file generation can now be invoked from their appropriate subdirectories
so they are contained within the directory itself rather than relying on
values in the top level Makefile.
It is now possible to generate all files within this project by using:
go generate ./...
Or the Makefile can continue to be used.
This commit also copies over the special copy of `tmpl` that the storage
engine uses within the influxdb repository. It was never copied over so
using `go generate` on these packages did not work.