7 questions
0
votes
1
answer
51
views
How to remove all FlagSmith identities at once
When using the FlagSmith User Interface, I couldn't find any way to select all the identities and delete them at once.
As you can see in the image attached, we are forced to click the trash icon ...
-1
votes
1
answer
132
views
In React with Flagsmith, how to get all the available flags?
I use Flagmsith in my React project.
I am using FlagsmithProvider so that I can use the flags everywhere.
For example:
import { useFlags } from "flagsmith/react";
const MyBestComponent = () =...
5
votes
1
answer
135
views
How to skip TLS verification in flagsmith?
I want to skip TLS verification for flagsmith.
Note: I'm using flagsmithv3 go sdk.
This is my current code:
func InitializeFlagsmith() *flagsmith.Client {
apiKey := "ser..."
...
3
votes
1
answer
476
views
Make Feature Flag required based on another Feature Flag in Flagsmith
In Flagsmith, is there a way to tie Feature Flags together in a way that if I enable Feature Flag "A", and that requires Feature Flag "B", then the user is warned that Flag "B&...
0
votes
1
answer
837
views
ERROR: unrecognised command `sh`, or `python`, or `bash` while all can be executed inside the image
I want to run a script after a docker image has been initialized. The image in question is a node:16 with python and other stuff
https://github.com/Flagsmith/flagsmith/blob/main/Dockerfile
Anyway, if ...
2
votes
1
answer
427
views
How to add Flagsmith API authentication header
I am trying to consume the Flagsmith APIs as documented here .
It seems some APIs like -- /flags/ need "x-environment-key" header, which is working.
But for others like /environments/ "...
1
vote
1
answer
607
views
initializing flagsmith library inside a function not working
I am trying to use this in my reactjs application: https://docs.flagsmith.com/clients/javascript/
The way it is initalized is as follows:
flagsmith
.init({
environmentID: Config....