add created_by and created_at to repo xml

This commit is contained in:
Christian Guenter 2018-07-01 15:53:56 +00:00
parent 4b36a10d6e
commit 1c59b131b7
2 changed files with 5 additions and 1 deletions

View File

@ -128,6 +128,8 @@ CLASS ZCL_ABAPGIT_PERSISTENCE_REPO IMPLEMENTATION.
ls_repo-sha1 = iv_branch.
ls_repo-package = iv_package.
ls_repo-offline = iv_offline.
ls_repo-created_by = sy-uname.
GET TIME STAMP FIELD ls_repo-created_at.
ls_repo-dot_abapgit = is_dot_abapgit.
lv_repo_as_xml = to_xml( ls_repo ).

View File

@ -23,7 +23,7 @@ INTERFACE zif_abapgit_persistence PUBLIC.
ignore_subpackages TYPE abap_bool,
write_protected TYPE abap_bool,
only_local_objects TYPE abap_bool,
code_inspector_check_variant TYPE sci_chkv ,
code_inspector_check_variant TYPE sci_chkv,
block_commit TYPE abap_bool,
END OF ty_local_settings.
@ -34,6 +34,8 @@ INTERFACE zif_abapgit_persistence PUBLIC.
branch_name TYPE string,
sha1 TYPE zif_abapgit_definitions=>ty_sha1,
package TYPE devclass,
created_by TYPE xubname,
created_at TYPE timestampl,
offline TYPE sap_bool,
local_checksums TYPE ty_local_checksum_tt,
dot_abapgit TYPE zif_abapgit_dot_abapgit=>ty_dot_abapgit,