mirror of
https://github.com/abapGit/abapGit.git
synced 2025-04-30 11:46:38 +08:00
Merge pull request #1551 from christianguenter2/issue_1544
add created_by and created_at to repo xml
This commit is contained in:
commit
55c77d55f3
|
@ -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 ).
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue
Block a user