bonfire-app/flavours/classic/config/bonfire_ui.exs
2021-09-23 09:19:59 +02:00

49 lines
1.4 KiB
Elixir
Executable file

import Config
config :bonfire, :ui,
theme: [
instance_name: "Bonfire",
instance_logo: "https://bonfirenetworks.org/img/bonfire.png",
instance_image: "https://bonfirenetworks.org/img/logo.png",
instance_description: "This is a bonfire demo instance for testing purpose"
],
sidebar_components: [
{Bonfire.UI.Social.SidebarNavigationLive, []},
],
smart_input: [
post: true,
cw: true,
summary: true
],
profile: [
sections: [
timeline: Bonfire.UI.Social.ProfileTimelineLive,
private: Bonfire.UI.Social.PrivateLive,
posts: Bonfire.UI.Social.ProfilePostsLive,
boosts: Bonfire.UI.Social.ProfileBoostsLive,
followers: Bonfire.UI.Social.ProfileFollowsLive,
followed: Bonfire.UI.Social.ProfileFollowsLive,
],
navigation: [
timeline: "timeline",
posts: "posts",
boosts: "boosts",
# private: "private",
],
widgets: [
],
],
smart_input_activities: [
# offer: "Publish an offer",
# need: "Publish a need",
# transfer_resource: "Transfer a resource",
# produce_resource: "Add a resource",
# intent: "Indicate an itent",
# economic_event: "Record an economic event",
# process: "Define a process"
],
smart_input_forms: [
post: Bonfire.UI.Social.CreateActivityLive,
]