Trait governance_os_pallet_organizations::Config[][src]

pub trait Config: Config {
    type Event: From<Event<Self>> + Into<Self::Event>;
    type Call: Parameter + GetDispatchInfo + From<Call<Self>> + Dispatchable<Origin = Self::Origin, PostInfo = PostDispatchInfo>;
    type RoleManager: RoleManager<AccountId = Self::AccountId>;
    type RoleBuilder: RoleBuilder<OrganizationId = Self::AccountId, Role = <Self::RoleManager as RoleManager>::Role>;
    type VotingRouter: VotingRouter<AccountId = Self::AccountId, ProposalId = Self::Hash>;
    type MaxVotes: Get<u32>;
    type MaxExecutors: Get<u32>;
    type WeightInfo: WeightInfo;
}

Associated Types

type Event: From<Event<Self>> + Into<Self::Event>[src]

Because this pallet emits events, it depends on the runtime’s definition of an event.

type Call: Parameter + GetDispatchInfo + From<Call<Self>> + Dispatchable<Origin = Self::Origin, PostInfo = PostDispatchInfo>[src]

Calls triggered from an organization.

type RoleManager: RoleManager<AccountId = Self::AccountId>[src]

Pallet that is in charge of managing the roles based ACL.

type RoleBuilder: RoleBuilder<OrganizationId = Self::AccountId, Role = <Self::RoleManager as RoleManager>::Role>[src]

This pallet relies on roles associated to a specific metadata so we need the runtime to provide some helper functions to build those so that we can keep the role definition code modular.

type VotingRouter: VotingRouter<AccountId = Self::AccountId, ProposalId = Self::Hash>[src]

VotingRouter implementation to choose between voting systems and route those to the right pallets.

type MaxVotes: Get<u32>[src]

Mostly used for weight computations and not actually enforced. The maximum number of votes in favor or against we can expect a proposal to have.

type MaxExecutors: Get<u32>[src]

Mostly used for weight computations and not actually enforced. Maximum numbers of executors we expect to be configured for an organization.

type WeightInfo: WeightInfo[src]

Weight values for this pallet

Loading content...

Implementors

Loading content...