__SNiPTT__ stands for Social Networking in Pretty Tiki Trackers. This profile is intended to help with building a Social Networking website based mainly on the powerful Tiki Trackers feature.
!Global Preferences
{CODE(caption=>YAML)}
preferences: # alphabetically sorted
allowRegister: y # Allow users to create new accounts
feature_mytiki: y
feature_userPreferences: y
feature_wiki: y
rememberme: enabled
style: strasa.css
userTracker: y
validateUsers: n # This is slowing us down as we build the profile
{CODE}
!User Profile Tracker
{CODE(caption=>YAML,wrap=>1)}
preferences:
feature_trackers: y
objects:
-
type: tracker
ref: user_profile_tracker
data:
name: User Profile
description: Additional information about users
default_status: open
show: [status, creation_date, modification_date, list_modification_date ]
-
type: tracker_field
ref: user_name
data:
name: User Login Name
tracker: $user_profile_tracker
type: user_selector
flags: [searchable, public, link, list, mandatory]
order: 1
-
type: tracker_field
ref: real_name
data:
name: Real Name
tracker: $user_profile_tracker
type: user_preference
flags: [searchable, public, list]
order: 2
{CODE}