write_app_metadata saves the metadata for a new application.
write_log_entry records the current app in the log for the present period.
Usage
write_app_metadata(app_df = construct_app_metadata())
write_log_entry(app_df = construct_app_metadata())Arguments
- app_df
A data frame containing metadata for a new job application (defaults to the value returned by
construct_app_metadata(), which constructs the new log entry from the base metadata yaml file). Fields must match those in the log file for the current period.
See also
Other build-dev:
as_filename(),
construct_app_metadata(),
copy_files(),
create_rprofile(),
create_rproject(),
get_latest_entry(),
get_valid_opts(),
in_tmp_env(),
open_doc_and_wait(),
open_with_application(),
set_project_paths(),
str_to_filename(),
truncate_string(),
validate_id(),
validate_status()
Examples
data(example_job_metadata)
app_df <- construct_app_metadata(app_info = example_job_metadata)
# write_app_metadata(app_df = app_df) # error: the folder doesn't exist
data(example_job_metadata)
app_df <- construct_app_metadata(app_info = example_job_metadata)
# write_log_entry(app_df = app_df) # error: the folder doesn't exist