Skip to content

Commit

Permalink
Option to specify status when creating iCalendar event
Browse files Browse the repository at this point in the history
  • Loading branch information
mortenbra committed Jan 14, 2019
1 parent b485b5b commit 7e63ae2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ora/icalendar_util_pkg.pkb
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,7 @@ begin

end get_event_str;


procedure download_event_str (p_event_str in varchar2,
p_filename in varchar2 := null)
as
Expand Down Expand Up @@ -238,6 +239,7 @@ function create_event (p_start_date in date,
p_location in varchar2 := null,
p_organizer_name in varchar2 := null,
p_organizer_email in varchar2 := null,
p_status in varchar2 := null,
p_uid in varchar2 := null) return t_event
as
l_returnvalue t_event;
Expand All @@ -262,6 +264,7 @@ begin
l_returnvalue.location := p_location;
l_returnvalue.organizer_name := p_organizer_name;
l_returnvalue.organizer_email := p_organizer_email;
l_returnvalue.status := p_status;
l_returnvalue.uid := p_uid;

return l_returnvalue;
Expand Down
1 change: 1 addition & 0 deletions ora/icalendar_util_pkg.pks
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ as
p_location in varchar2 := null,
p_organizer_name in varchar2 := null,
p_organizer_email in varchar2 := null,
p_status in varchar2 := null,
p_uid in varchar2 := null) return t_event;

end icalendar_util_pkg;
Expand Down

0 comments on commit 7e63ae2

Please sign in to comment.