Changeset 844

Show
Ignore:
Timestamp:
02/08/08 17:59:29
Author:
goldoraf
Message:

Begun to work on notifier code

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • apps/notifier/conf/environments/development.php

    r835 r844  
    22 
    33// Show full error reports and disable caching 
    4 $config->action_controller->consider_all_requests_local = true; 
     4$config->action_controller->consider_all_requests_local = false; 
    55$config->action_controller->perform_caching = false; 
     6$config->active_record->log_sql = true; 
    67 
    78?> 
  • apps/notifier/conf/routes.php

    r835 r844  
    22 
    33$map = new SRouteSet(); 
     4$map->connect('api/notes/:id', array('resource' => 'notes')); 
     5$map->connect('api/public_timeline', array('resource' => 'public_timeline')); 
    46$map->connect(':controller/:action/:id'); 
    57