vinodk
committed
on 11 Feb 02
1) added missing param to workflow_case__add_task_assignment
2) Fixed minor typos in workflow docs, ACS->OpenACS
/www/assign-yourself-postgresql.xql (+2 -1)
4 4    <rdbms><type>postgresql</type><version>7.1</version></rdbms>
5 5
6 6 <fullquery name="add_self_case">     
7 7       <querytext>
8 8
9 9     select workflow_case__add_manual_assignment (
10 10             :case_id,
11 11             :transition_key,
12 12             :user_id
13 13         );
14 14
15 15       </querytext>
16 16 </fullquery>
17 17
18 18  
19 19 <fullquery name="add_self_task">     
20 20       <querytext>
21 21
22 22       select workflow_case__add_task_assignment (
23 23             :task_id,
24               :user_id
  24             :user_id,
  25                         'f'
25 26         );
26 27
27 28       </querytext>
28 29 </fullquery>
29 30
30 31  
31 32 </queryset>