diff --git a/js/src/components/NavBar.vue b/js/src/components/NavBar.vue
index e0bfbe69c..0d8d6ed2c 100644
--- a/js/src/components/NavBar.vue
+++ b/js/src/components/NavBar.vue
@@ -52,21 +52,6 @@
>{{ $t("Create") }}
-
-
-
@@ -381,15 +366,6 @@ nav {
background-color: inherit;
}
- .koena {
- padding-top: 0;
- padding-bottom: 0;
- & > img {
- max-height: 4rem;
- padding-top: 0.2rem;
- }
- }
-
.identity-wrapper {
display: flex;
diff --git a/js/src/graphql/config.ts b/js/src/graphql/config.ts
index 36a81aa9e..490346061 100644
--- a/js/src/graphql/config.ts
+++ b/js/src/graphql/config.ts
@@ -71,7 +71,6 @@ export const CONFIG = gql`
features {
groups
eventCreation
- koenaConnect
}
restrictions {
onlyAdminCanCreateGroups
diff --git a/js/src/types/config.model.ts b/js/src/types/config.model.ts
index 3a039b88b..97544c2e5 100644
--- a/js/src/types/config.model.ts
+++ b/js/src/types/config.model.ts
@@ -95,7 +95,6 @@ export interface IConfig {
features: {
eventCreation: boolean;
groups: boolean;
- koenaConnect: boolean;
};
restrictions: {
onlyAdminCanCreateGroups: boolean;
diff --git a/js/tests/unit/specs/mocks/config.ts b/js/tests/unit/specs/mocks/config.ts
index f64d7e04d..9ff4e92d8 100644
--- a/js/tests/unit/specs/mocks/config.ts
+++ b/js/tests/unit/specs/mocks/config.ts
@@ -54,7 +54,6 @@ export const configMock = {
__typename: "Features",
eventCreation: true,
groups: true,
- koenaConnect: false,
},
restrictions: {
__typename: "Restrictions",
diff --git a/lib/graphql/resolvers/config.ex b/lib/graphql/resolvers/config.ex
index 0db8d937d..af9bded83 100644
--- a/lib/graphql/resolvers/config.ex
+++ b/lib/graphql/resolvers/config.ex
@@ -144,8 +144,7 @@ defmodule Mobilizon.GraphQL.Resolvers.Config do
timezones: Tzdata.zone_list(),
features: %{
groups: Config.instance_group_feature_enabled?(),
- event_creation: Config.instance_event_creation_enabled?(),
- koena_connect: Config.get([:instance, :koena_connect_link], false)
+ event_creation: Config.instance_event_creation_enabled?()
},
restrictions: %{
only_admin_can_create_groups: Config.only_admin_can_create_groups?(),
diff --git a/lib/graphql/schema/config.ex b/lib/graphql/schema/config.ex
index 30ac9cd45..c20ee1e01 100644
--- a/lib/graphql/schema/config.ex
+++ b/lib/graphql/schema/config.ex
@@ -283,8 +283,6 @@ defmodule Mobilizon.GraphQL.Schema.ConfigType do
field(:event_creation, :boolean,
description: "Whether event creation is allowed on this instance"
)
-
- field(:koena_connect, :boolean, description: "Activate link to Koena Connect")
end
@desc """