yogiben:admin-settings

v1.0.1Published 11 years ago

This package has not had recent updates. Please investigate it's current state before committing to using it in your project.

Meteor Admin Settings

Adds page for key value stores in yogiben:admin dashboard.

Setup

  1. meteor add yogiben:admin-settings
  2. Go to /admin and select Settings from sidebar
  3. Use adminSetting helper or AdminSettings.get to get your setting value.

Using adminSetting helper

<template name="example">
	<h1>{{adminSetting 'Welcome message'}}</h1>
</template>

Using AdminSettings.get method

welcomeMessage = AdminSettings.get 'Welcome message'